UNPKG

nextjs

Version:

The fastest async handler in node.js

4 lines 168 B
module.exports = function(number, callback){ var c = 0; if(number == 0){ callback(); } return function(){ c++; if(c == number){ callback.apply(this, arguments); } } }