04-28-2018, 04:19 PM
The best thing to do when trying to find variables is look at what parent objects are being used then inspect them with:
console.log(config);
or
console.log(util.inspect(objectname));
This way you can find just about everything that's available
console.log(config);
or
console.log(util.inspect(objectname));
This way you can find just about everything that's available