Midi / node_modules /async /internal /initialParams.js
Ryanrealaf's picture
imit
380910d
Raw
History Blame Contribute Delete
289 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (fn) {
return function (...args /*, callback*/) {
var callback = args.pop();
return fn.call(this, args, callback);
};
};
module.exports = exports.default;