新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
31 lines
789 B
JavaScript
31 lines
789 B
JavaScript
"use strict";
|
|
module.exports = function(Promise, INTERNAL) {
|
|
var PromiseReduce = Promise.reduce;
|
|
var PromiseAll = Promise.all;
|
|
|
|
function promiseAllThis() {
|
|
return PromiseAll(this);
|
|
}
|
|
|
|
function PromiseMapSeries(promises, fn) {
|
|
return PromiseReduce(promises, fn, INTERNAL, INTERNAL);
|
|
}
|
|
|
|
Promise.prototype.each = function (fn) {
|
|
return PromiseReduce(this, fn, INTERNAL, 0)
|
|
._then(promiseAllThis, undefined, undefined, this, undefined);
|
|
};
|
|
|
|
Promise.prototype.mapSeries = function (fn) {
|
|
return PromiseReduce(this, fn, INTERNAL, INTERNAL);
|
|
};
|
|
|
|
Promise.each = function (promises, fn) {
|
|
return PromiseReduce(promises, fn, INTERNAL, 0)
|
|
._then(promiseAllThis, undefined, undefined, promises, undefined);
|
|
};
|
|
|
|
Promise.mapSeries = PromiseMapSeries;
|
|
};
|
|
|