• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict'
2
3module.exports = function (cb) {
4  return function () {
5    var args = Array.prototype.slice.call(arguments, 1)
6    if (args.length) args.unshift(null)
7    return cb.apply(null, args)
8  }
9}
10