HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/nodejs/@npmcli/git/lib/
Upload File :
Current File : //proc/self/root/usr/share/nodejs/@npmcli/git/lib/find.js
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
}