File Explorer

/proc/self/root/proc/1/task/1/root/node24/lib/node_modules/npm/node_modules/tuf-js/dist/utils

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

url.js433 B · 14 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.join = join;const url_1 = require("url");function join(base, path) {    return new url_1.URL(ensureTrailingSlash(base) + removeLeadingSlash(path)).toString();}function ensureTrailingSlash(path) {    return path.endsWith('/') ? path : path + '/';}function removeLeadingSlash(path) {    return path.startsWith('/') ? path.slice(1) : path;}