Select Git revision
Forked from
SERG / woRkflow
Source project has a limited visibility.
-
B.Anderson authoredB.Anderson authored
debug.ts 184 B
const DEBUG : boolean = process.env.DEBUG ? true : false;
function debug(input: any){
if(!DEBUG) return;
console.log("DEBUG: ");
console.log(input);
}
export {debug};