mirror of https://github.com/calzoneman/sync.git
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
|
const switches = {};
|
||
|
|
||
|
export function isActive(switchName) {
|
||
|
return switches.hasOwnProperty(switchName) && switches[switchName] === true;
|
||
|
}
|
||
|
|
||
|
export function setActive(switchName, active) {
|
||
|
switches[switchName] = active;
|
||
|
}
|
||
|
|
||
|
export const DUAL_BACKEND = 'DUAL_BACKEND';
|