rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
9 lines (6 loc) • 311 B
JavaScript
const globalObject = typeof global === "object" ? global : typeof window === "object" ? window : null;
if (globalObject._BUILD == null) {
globalObject._BUILD = {};
}
globalObject._BUILD = {..._BUILD, DEBUG: true, DISABLE_BREAKPOINT: true};
console.log("test timeout: ", jasmine.DEFAULT_TIMEOUT_INTERVAL);