PHP 8.2.30
Preview: strip-absolute-path.js Size: 918 B
/proc/self/root/proc/self/root/opt/alt/alt-nodejs16/root/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: 25

Name Size Perms Modified Actions
2.30 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
2.74 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
921 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
8.77 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
760 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
2.13 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
3.09 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
5.21 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
619 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
405 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
410 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
9.22 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
13.86 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
4.21 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
3.92 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
2.71 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
5.35 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
918 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
394 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
1.07 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
24.91 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download
842 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
697 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
535 B lrw-r--r-- 2026-03-09 06:51:26
Edit Download
14.76 KB lrw-r--r-- 2026-03-09 06:51:26
Edit Download

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