vending-machine/mobile/node_modules/licia/isRunning.js
2026-04-03 06:07:13 +08:00

10 lines
162 B
JavaScript

exports = function(pid) {
try {
return process.kill(pid, 0);
} catch (e) {
return e.code === 'EPERM';
}
};
module.exports = exports;