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