isRunning.js 162 B

123456789
  1. exports = function(pid) {
  2. try {
  3. return process.kill(pid, 0);
  4. } catch (e) {
  5. return e.code === 'EPERM';
  6. }
  7. };
  8. module.exports = exports;