mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
|
|
|
|
if (process.argv.indexOf('-d') == -1 || process.argv.indexOf('-a') == -1) {
|
|
process.exit();
|
|
} else {
|
|
setInterval(function() {
|
|
console.log('ok');
|
|
}, 500);
|
|
}
|