BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
walk-up-path
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.js
const {dirname, resolve} = require('path') module.exports = function* (path) { for (path = resolve(path); path;) { yield path const pp = dirname(path) if (pp === path) path = null else path = pp } }
Save
Cancel