📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-28 17:45:03
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs16
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
walk-up-path
📍 /opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/node_modules.bundled/walk-up-path
🔄 Refresh
✏️
Editing: index.js
Read Only
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