Files
SponsorBlockServer/src/config.js
2020-04-01 21:04:04 +01:00

12 lines
294 B
JavaScript

var fs = require('fs');
var config = undefined;
// Check to see if launched in test mode
if (process.env.npm_lifecycle_script === 'node test.js') {
config = JSON.parse(fs.readFileSync('test.json'));
} else {
config = JSON.parse(fs.readFileSync('config.json'));
}
module.exports = config;