You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
549 B
18 lines
549 B
var restArgs = require('./restArgs'); |
|
var root = require('./root'); |
|
exports = function(fn, multiArgs) { |
|
return restArgs(function(args) { |
|
return new root.Promise(function(resolve, reject) { |
|
args.push( |
|
restArgs(function callback(err, values) { |
|
if (err) return reject(err); |
|
if (!multiArgs) return resolve(values[0]); |
|
resolve(values); |
|
}) |
|
); |
|
fn.apply(this, args); |
|
}); |
|
}); |
|
}; |
|
|
|
module.exports = exports;
|
|
|