@thuantan2060/technicalindicators
Version:
Techincal Indicators written in javascript
15 lines (14 loc) • 301 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getConfig = getConfig;
exports.setConfig = setConfig;
let config = {};
function setConfig(key, value) {
config[key] = value;
}
function getConfig(key) {
return config[key];
}
//# sourceMappingURL=config.js.map