🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 14:34:46 | PHP 8.1.34
📂
/ (Root)
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
walk-up-path
📍 /usr/lib/node_modules/npm/node_modules/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