TreasureTrails/node_modules/fast-check/lib/esm/check/runner/configuration/GlobalParameters.js

11 lines
251 B
JavaScript
Raw Normal View History

2026-03-18 09:02:21 -05:00
let globalParameters = {};
export function configureGlobal(parameters) {
globalParameters = parameters;
}
export function readConfigureGlobal() {
return globalParameters;
}
export function resetConfigureGlobal() {
globalParameters = {};
}