徐总多门店
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.
 
 
 
 
 
 

24 lines
578 B

var slice = require('./slice')
/**
* 创建一个函数, 调用次数不超过 count 次之前执行回调并将所有结果记住后返回
*
* @param {Number} count 调用次数
* @param {Function} callback 完成回调
* @return {Object}
*/
function before (count, callback, context) {
var runCount = 0
var rests = []
context = context || this
return function () {
var args = arguments
runCount++
if (runCount < count) {
rests.push(args[0])
callback.apply(context, [rests].concat(slice(args)))
}
}
}
module.exports = before