File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/fflate/lib

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 /.

worker.cjs699 B · 22 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });var ch2 = {};exports.default = (function (c, id, msg, transfer, cb) {    var w = new Worker(ch2[id] || (ch2[id] = URL.createObjectURL(new Blob([        c + ';addEventListener("error",function(e){e=e.error;postMessage({$e$:[e.message,e.code,e.stack]})})'    ], { type: 'text/javascript' }))));    w.onmessage = function (e) {        var d = e.data, ed = d.$e$;        if (ed) {            var err = new Error(ed[0]);            err['code'] = ed[1];            err.stack = ed[2];            cb(err, null);        }        else            cb(null, d);    };    w.postMessage(msg, transfer);    return w;});