D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
alt
/
alt-nodejs16
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
@npmcli
/
git
/
lib
/
Filename :
find.js
back
Copy
const is = require('./is.js') const { dirname } = require('path') module.exports = async ({ cwd = process.cwd() } = {}) => { if (await is({ cwd })) { return cwd } while (cwd !== dirname(cwd)) { cwd = dirname(cwd) if (await is({ cwd })) { return cwd } } return null }