mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
var phantom = false;
|
|
process.argv.forEach((val) => {
|
|
if (val === '--phantom') {
|
|
phantom = true;
|
|
}
|
|
});
|
|
|
|
console.log('Phantom:', phantom);
|
|
|
|
module.exports = phantom;
|