Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
alt
/
alt-nodejs19
/
root
/
lib
/
node_modules
/
npm
/
node_modules
/
mkdirp
/
lib
/
File Content:
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}
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
find-made.js
763 bytes
0644
mkdirp-manual.js
1610 bytes
0644
mkdirp-native.js
969 bytes
0644
opts-arg.js
784 bytes
0644
path-arg.js
730 bytes
0644
use-native.js
448 bytes
0644
N4ST4R_ID | Naxtarrr