PHP 8.2.30
Preview: strip-absolute-path.js Size: 918 B
/opt/alt/alt-nodejs12/root/usr/lib/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js

// unix absolute paths are also absolute on win32, so we use this for both
const { isAbsolute, parse } = require('path').win32

// returns [root, stripped]
// Note that windows will think that //x/y/z/a has a "root" of //x/y, and in
// those cases, we want to sanitize it to x/y/z/a, not z/a, so we strip /
// explicitly if it's the first character.
// drive-specific relative paths on Windows get their root stripped off even
// though they are not absolute, so `c:../foo` becomes ['c:', '../foo']
module.exports = path => {
  let r = ''

  let parsed = parse(path)
  while (isAbsolute(path) || parsed.root) {
    // windows will think that //x/y/z has a "root" of //x/y/
    // but strip the //?/C:/ off of //?/C:/path
    const root = path.charAt(0) === '/' && path.slice(0, 4) !== '//?/' ? '/'
      : parsed.root
    path = path.substr(root.length)
    r += root
    parsed = parse(path)
  }
  return [r, path]
}

Directory Contents

Dirs: 0 × Files: 24

Name Size Perms Modified Actions
283 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
2.32 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
2.79 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
8.83 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
772 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
2.16 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
3.11 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
5.18 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
277 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
410 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
9.14 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
11.86 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
4.18 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
3.97 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
2.74 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
5.38 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
918 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
577 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
1.07 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
24.16 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download
852 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
309 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
533 B lrw-r--r-- 2026-03-09 07:21:30
Edit Download
14.59 KB lrw-r--r-- 2026-03-09 07:21:30
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).