新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
24 lines
579 B
JavaScript
24 lines
579 B
JavaScript
"use strict";
|
|
const { percentDecode } = require("whatwg-url");
|
|
const { atob } = require("abab");
|
|
|
|
exports.stripLeadingAndTrailingASCIIWhitespace = string => {
|
|
return string.replace(/^[ \t\n\f\r]+/, "").replace(/[ \t\n\f\r]+$/, "");
|
|
};
|
|
|
|
exports.stringPercentDecode = input => {
|
|
return percentDecode(Buffer.from(input, "utf-8"));
|
|
};
|
|
|
|
exports.isomorphicDecode = input => {
|
|
return input.toString("binary");
|
|
};
|
|
|
|
exports.forgivingBase64Decode = data => {
|
|
const asString = atob(data);
|
|
if (asString === null) {
|
|
return null;
|
|
}
|
|
return Buffer.from(asString, "binary");
|
|
};
|