biz2credit-code-challenge-gaurav-pandey-2
Version:
Code Challenge for Gaurav Pandey
9 lines • 343 B
JavaScript
/**
* Configuration Description is as follows :
* > showUnhandledExceptions: Show Unhandled exceptions to the end-users, useful while debugging
* the application, when set to true would start throwing errors at atomic level
*/
const GLOBAL_CONFIGS = {
showUnhandledExceptions : false
};
module.exports = global.configs = GLOBAL_CONFIGS;