1
0
Fork 0
js-utils/src/Env.ts

6 lines
104 B
TypeScript
Raw Normal View History

const ENV_DEBUG = 'DEBUG';
2020-03-29 13:43:52 +00:00
export function isDebug() {
return Reflect.has(process.env, ENV_DEBUG);
2020-03-29 13:43:52 +00:00
}