📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 08:20:32
📂
/
/
opt
/
alt
/
alt-nodejs16
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
walk-up-path
✏️
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 Changes
❌ Cancel