mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
10 lines
204 B
JavaScript
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)
|
|
}
|
|
}
|