📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 03:54:36
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs6
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
which
/
node_modules
/
isexe
📍 /opt/alt/alt-nodejs6/root/usr/lib/node_modules/npm/node_modules.bundled/which/node_modules/isexe
🔄 Refresh
✏️
Editing: access.js
Read Only
module.exports = isexe isexe.sync = sync var fs = require('fs') function isexe (path, _, cb) { fs.access(path, fs.X_OK, function (er) { cb(er, !er) }) } function sync (path, _) { fs.accessSync(path, fs.X_OK) return true }
💾 Save Changes
❌ Cancel