File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/concat-map

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

index.js345 B · 14 lines
module.exports = function (xs, fn) {    var res = [];    for (var i = 0; i < xs.length; i++) {        var x = fn(xs[i], i);        if (isArray(x)) res.push.apply(res, x);        else res.push(x);    }    return res;}; var isArray = Array.isArray || function (xs) {    return Object.prototype.toString.call(xs) === '[object Array]';};