yma-series
v1.0.0
Published
链式调用一系列需要执行的 Callback 的函数
Downloads
17
Readme
Yma Chain
链式调用一系列需要执行的 Callback 的函数
Usage
const createSeries = require('yma-series');
createSeries({
data: 0,
})
.tap(
function (ctx, next) {
ctx.data += 1;
next();
},
function (ctx, next) {
ctx.data += 1;
next();
},
function (ctx, next) {
ctx.data += 1;
next();
}
)
.call(function (ctx) {
console.log(ctx);
});