2019-01-06 13:14:45 -06:00

10 lines
204 B
JavaScript

'use strict'
module.exports = function (cb) {
return function () {
var args = Array.prototype.slice.call(arguments, 1)
if (args.length) args.unshift(null)
return cb.apply(null, args)
}
}