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);
}