/var/www/myprog.com.ua/server/node/node_modules/agent-base/dist/src
NameSizeModeActions
index.d.ts31970644editdlrm
index.js79100644editdlrm
index.js.map58240644editdlrm
promisify.d.ts2990644editdlrm
promisify.js4950644editdlrm
promisify.js.map4990644editdlrm
Edit: /var/www/myprog.com.ua/server/node/node_modules/agent-base/dist/src/promisify.js (495B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function promisify(fn) { return function (req, opts) { return new Promise((resolve, reject) => { fn.call(this, req, opts, (err, rtn) => { if (err) { reject(err); } else { resolve(rtn); } }); }); }; } exports.default = promisify; //# sourceMappingURL=promisify.js.map