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

4 lines
74 B
TypeScript
Raw Normal View History

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