1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge branch 'nodeify' of github.com:MetaMask/metamask-extension into nodeify

This commit is contained in:
kumavis 2017-10-06 13:17:06 -07:00
commit 0b6dab384f

View File

@ -4,7 +4,7 @@ const noop = function(){}
module.exports = function nodeify (fn, context) {
return function(){
const args = [].slice.call(arguments)
const lastArg = args[args.length-1]
const lastArg = args[args.length - 1]
const lastArgIsCallback = typeof lastArg === 'function'
let callback
if (lastArgIsCallback) {