Current Path : /lib/node_modules/npm/node_modules/@npmcli/run-script/lib/ |
Current File : //lib/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js |
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 } }