PHP 8.2.30
Preview: find-made.js Size: 763 B
//proc/thread-self/root/opt/alt/alt-nodejs18/root/usr/lib/node_modules/npm/node_modules/mkdirp/lib/find-made.js

const {dirname} = require('path')

const findMade = (opts, parent, path = undefined) => {
  // we never want the 'made' return value to be a root directory
  if (path === parent)
    return Promise.resolve()

  return opts.statAsync(parent).then(
    st => st.isDirectory() ? path : undefined, // will fail later
    er => er.code === 'ENOENT'
      ? findMade(opts, dirname(parent), parent)
      : undefined
  )
}

const findMadeSync = (opts, parent, path = undefined) => {
  if (path === parent)
    return undefined

  try {
    return opts.statSync(parent).isDirectory() ? path : undefined
  } catch (er) {
    return er.code === 'ENOENT'
      ? findMadeSync(opts, dirname(parent), parent)
      : undefined
  }
}

module.exports = {findMade, findMadeSync}

Directory Contents

Dirs: 0 × Files: 6

Name Size Perms Modified Actions
763 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
1.57 KB lrw-r--r-- 2026-03-09 09:08:38
Edit Download
969 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
784 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
730 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
448 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download

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