Utilities for extending the debug module.
npm install strong-debug-utilsUtilities for extending the debug module.
Usage:
Create a module to import strong-debug-utils and set your prefix,
then import that module and set your suffix as appropriate for your debug
statements.
Example:
``
// debug.js
module.exports = require('strong-debug-utils')('foo');
// bar.js
var debug = require('./debug.js')('bar');
// prints to debug with the 'foo:bar' header
debug('I am in bar!');
``