mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
19 lines
491 B
JavaScript
19 lines
491 B
JavaScript
const promiseToCallback = require('promise-to-callback')
|
|
const noop = function(){}
|
|
|
|
module.exports = function nodeify (fn, context) {
|
|
return function(){
|
|
const args = [].slice.call(arguments)
|
|
const lastArg = args[args.length - 1]
|
|
const lastArgIsCallback = typeof lastArg === 'function'
|
|
let callback
|
|
if (lastArgIsCallback) {
|
|
callback = lastArg
|
|
args.pop()
|
|
} else {
|
|
callback = noop
|
|
}
|
|
promiseToCallback(fn.apply(context, args))(callback)
|
|
}
|
|
}
|