PHP 8.2.30
Preview: get-prefix.js Size: 1.23 KB
//usr/lib/node_modules/npm/node_modules/libnpx/get-prefix.js

'use strict'

const promisify = require('./util.js').promisify

const path = require('path')
const statAsync = promisify(require('fs').stat)

module.exports = getPrefix
function getPrefix (root) {
  const original = root = path.resolve(root)
  while (path.basename(root) === 'node_modules') {
    root = path.dirname(root)
  }
  if (original !== root) {
    return Promise.resolve(root)
  } else {
    return Promise.resolve(getPrefixFromTree(root))
  }
}

function getPrefixFromTree (current) {
  if (isRootPath(current, process.platform)) {
    return false
  } else {
    return Promise.all([
      fileExists(path.join(current, 'package.json')),
      fileExists(path.join(current, 'node_modules'))
    ]).then(args => {
      const hasPkg = args[0]
      const hasModules = args[1]
      if (hasPkg || hasModules) {
        return current
      } else {
        return getPrefixFromTree(path.dirname(current))
      }
    })
  }
}

module.exports._fileExists = fileExists
function fileExists (f) {
  return statAsync(f).catch(err => {
    if (err.code !== 'ENOENT') {
      throw err
    }
  })
}

module.exports._isRootPath = isRootPath
function isRootPath (p, platform) {
  return platform === 'win32'
    ? p.match(/^[a-z]+:[/\\]?$/i)
    : p === '/'
}

Directory Contents

Dirs: 1 × Files: 12

Name Size Perms Modified Actions
locales DIR
- drwxr-xr-x 2024-03-03 22:36:29
Edit Download
1.51 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
27.48 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
2.20 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.23 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
12.62 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
6.70 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
755 B lrw-r--r-- 2021-03-10 14:36:38
Edit Download
2.59 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
7.10 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
6.31 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
390 B lrw-r--r-- 2021-03-10 14:36:38
Edit Download
490 B lrw-r--r-- 2021-03-10 14:36:38
Edit Download

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