cdebug
v0.1.0
Published
Embedded conditional breakpoint debugging in code
Downloads
13
Maintainers
Readme
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 hit