alinex-async
Version:
An extended version of the async library.
20 lines (11 loc) • 326 B
JavaScript
(function() {
var async, once;
async = require('async');
once = require('./once');
module.exports = async;
module.exports.once = once.wait;
module.exports.onceSkip = once.skip;
module.exports.onceThrow = once["throw"];
module.exports.onceTime = once.time;
}).call(this);
//# sourceMappingURL=index.map