File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/xtend

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

immutable.js384 B · 20 lines
module.exports = extend var hasOwnProperty = Object.prototype.hasOwnProperty; function extend() {    var target = {}     for (var i = 0; i < arguments.length; i++) {        var source = arguments[i]         for (var key in source) {            if (hasOwnProperty.call(source, key)) {                target[key] = source[key]            }        }    }     return target}