UNPKG

nor-debug

Version:
13 lines (8 loc) 234 B
var debug = require('../src/debug.js'); debug.log( "number = ", 10 ); debug.log( "object = ", {"foo":"bar"} ); debug.log( "array = ", ["one", "two", "three"] ); function testfunc(x) { debug.log( "argument = ", x ); } testfunc();