| 123456789101112131415161718192021 | 
							- class ConfigObject {
 
-   constructor () {
 
-     this.loopTimeout = 5000;
 
-     this.decimalPlaces = 8;
 
-     this.intConvertRoundMode = 2;
 
-     this.default_lang = 'pt';
 
-     this.enable_type_casting = true;
 
-     this.idle_input_interval = 5000;
 
-   }
 
-   setConfig (opts) {
 
-     for (const key in opts) {
 
-       if(this.hasOwnProperty(key)){
 
-         this[key] = opts[key];
 
-       }
 
-     }
 
-   }
 
- }
 
- let config = new ConfigObject();
 
- export const Config = config;
 
 
  |