paychangu-js
Version:
Paychangu JavaScript SDK for easy integration of payment services
13 lines (12 loc) • 308 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getConfig = exports.setConfig = void 0;
let config = null;
function setConfig(newConfig) {
config = newConfig;
}
exports.setConfig = setConfig;
function getConfig() {
return config;
}
exports.getConfig = getConfig;