You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
581 B
25 lines
581 B
var slice = require('./slice')
|
|
|
|
/**
|
|
* 创建一个函数, 调用次数超过 count 次之后执行回调并将所有结果记住后返回
|
|
*
|
|
* @param {Number} count 调用次数
|
|
* @param {Function} callback 完成回调
|
|
* @return {Object}
|
|
*/
|
|
function after (count, callback, context) {
|
|
var runCount = 0
|
|
var rests = []
|
|
return function () {
|
|
var args = arguments
|
|
runCount++
|
|
if (runCount <= count) {
|
|
rests.push(args[0])
|
|
}
|
|
if (runCount >= count) {
|
|
callback.apply(context, [rests].concat(slice(args)))
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = after
|
|
|