mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-22 15:53:23 +00:00
10 lines
No EOL
181 B
JavaScript
10 lines
No EOL
181 B
JavaScript
var args = require('yargs').argv;
|
|
// Switch to phantom.
|
|
// Example:
|
|
// gulp --phantom
|
|
|
|
var phantom = !!args.phantom;
|
|
|
|
console.log('Phantom:', phantom);
|
|
|
|
module.exports = phantom; |