PHP 8.2.30
Preview: strip-absolute-path.js Size: 917 B
/opt/alt/alt-nodejs19/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.slice(root.length)
    r += root
    parsed = parse(path)
  }
  return [r, path]
}

Directory Contents

Dirs: 0 × Files: 25

Name Size Perms Modified Actions
2.34 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
2.79 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
921 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
8.94 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
760 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
2.18 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
3.15 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
5.36 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
649 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
413 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
410 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
9.45 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
14.29 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
4.31 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
3.97 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
2.77 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
5.57 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
917 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
394 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
1.07 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
24.78 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
866 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
725 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
535 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
14.94 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download

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