mirror of
https://github.com/Readarr/Readarr
synced 2026-01-08 08:33:30 +01: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; |