/
opt
/
alt
/
alt-nodejs18
/
root
/
lib
/
node_modules
/
npm
/
node_modules
/
@npmcli
/
run-script
/
lib
/
Upload Filee
HOME
const { stat } = require('node:fs/promises') const { resolve } = require('node:path') module.exports = async path => { try { const st = await stat(resolve(path, 'server.js')) return st.isFile() } catch (er) { return false } }