📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-27 21:20:19
📂
/
/
opt
/
alt
/
alt-nodejs6
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
which
/
node_modules
/
isexe
✏️
Editing: access.js
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