Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
local
/
nvm
/
versions
/
node
/
v18.20.8
/
lib
/
node_modules
/
npm
/
node_modules
/
tuf-js
/
dist
/
utils
Upload
4 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
tmpfile.js
1.11 KB
-rw-r--r--
2023-02-19 10:00:20
Edit
Del
url.js
456 B
-rw-r--r--
2025-03-27 00:29:52
Edit
Del
Editing: url.js
(456 B)
Path: /usr/local/nvm/versions/node/v18.20.8/lib/node_modules/npm/node_modules/tuf-js/dist/utils/url.js
Back
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.join = void 0; const url_1 = require("url"); function join(base, path) { return new url_1.URL(ensureTrailingSlash(base) + removeLeadingSlash(path)).toString(); } exports.join = join; function ensureTrailingSlash(path) { return path.endsWith('/') ? path : path + '/'; } function removeLeadingSlash(path) { return path.startsWith('/') ? path.slice(1) : path; }