mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-11 14:07:09 +03:00
12 lines
294 B
JavaScript
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; |