cdebug
v0.1.0
Published
Embedded conditional breakpoint debugging in code
Downloads
3
Maintainers
Readme
cdebug
Conditional debugging in code... a nice, terse solution
This is just a wrapper around debugger
.
Installation
npm install cdebug
Usage
let myVar = 1;
// conditional breakpoint
cdebug(myVar === 1); // breakpoint hit
myVar = 2;
cdebug(myVar === 1); // breakpoint not hit