v1.0.0
This release includes fixes for objects passed into the console. To debug your console event handlers, create a private console attachment and use it to debug your code; otherwise, you will receive a maximum call stack error (caused by recursion).
/**
* A fresh instance of the console object.
* This keeps a reference to the console without
* any loopbacks during global replacement.
* @type {Object} The console object.
* @see {@link https://nodejs.org/api/console.html} for more information.
*/
var myConsole = Console({ stdout: process.stdout, stderr: process.stderr });