ssube/js-utils

View on GitHub
src/Env.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const ENV_DEBUG = 'DEBUG';

/**
 * Test if DEBUG mode is set.
 *
 * TODO: check variable value as well
 *
 * @internal
 */
export function isDebug(): boolean {
  return Reflect.has(process.env, ENV_DEBUG);
}