/ cloudformation-templates / node_modules / aws-cdk / node_modules / async / internal / initialParams.js
initialParams.js
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 7 exports.default = function (fn) { 8 return function (...args /*, callback*/) { 9 var callback = args.pop(); 10 return fn.call(this, args, callback); 11 }; 12 }; 13 14 module.exports = exports["default"];