16 lines
454 B
JavaScript
16 lines
454 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.configureGlobal = configureGlobal;
|
|
exports.readConfigureGlobal = readConfigureGlobal;
|
|
exports.resetConfigureGlobal = resetConfigureGlobal;
|
|
let globalParameters = {};
|
|
function configureGlobal(parameters) {
|
|
globalParameters = parameters;
|
|
}
|
|
function readConfigureGlobal() {
|
|
return globalParameters;
|
|
}
|
|
function resetConfigureGlobal() {
|
|
globalParameters = {};
|
|
}
|