0.1.0 • Published 9 years ago
cdebug v0.1.0
cdebug
Conditional debugging in code... a nice, terse solution
This is just a wrapper around debugger.
Installation
npm install cdebugUsage
let myVar = 1;
// conditional breakpoint
cdebug(myVar === 1); // breakpoint hit
myVar = 2;
cdebug(myVar === 1); // breakpoint not hit0.1.0
9 years ago