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';