mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
// Separated from boot.js for testing.
|
|
|
|
// Check that we have a pid that looks like an integer (non-decimal
|
|
// integer is okay).
|
|
exports.validPid = function (pid) {
|
|
return ! isNaN(+pid);
|
|
};
|