File Explorer

/proc/1/cwd/proc/self/root/node24/lib/node_modules/npm/node_modules/diff/libcjs/util

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

params.js521 B · 18 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.generateOptions = generateOptions;function generateOptions(options, defaults) {    if (typeof options === 'function') {        defaults.callback = options;    }    else if (options) {        for (var name in options) {            /* istanbul ignore else */            if (Object.prototype.hasOwnProperty.call(options, name)) {                defaults[name] = options[name];            }        }    }    return defaults;}