@privateid/ultra-web-sdk-alpha
Version:
CryptoNets WebAssembly SDK
16 lines • 338 B
JavaScript
let environment;
let debugType = '0';
export const setEnvVariables = (env) => {
environment = env;
};
export const setDebugType = (dt) => {
debugType = dt;
};
const getEnvironment = () => {
if (environment) {
return environment;
}
return null;
};
export { getEnvironment };
//# sourceMappingURL=envUtils.js.map