mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-06 08:28:37 +01:00
10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
var phantom = false;
|
|
process.argv.forEach((val) => {
|
|
if (val === '--phantom') {
|
|
phantom = true;
|
|
}
|
|
});
|
|
|
|
console.log('Phantom:', phantom);
|
|
|
|
module.exports = phantom;
|