File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/agent-base/dist/src

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

promisify.js495 B · 18 lines
"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