File Explorer

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

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