Console Normalizer compatibility and fixes
masterThe Console Normalizer utility provides the following fixes and compatibility improvements:
window.consoleavailability: Ensuresconsoleis available in IE 8/9 and Chrome even if the developer tools/console are closed.- Method Invocation: Fixes issues where
console.log.apply(),console.info.apply(), etc., fail in IE 8 (Object error) and IE 9 (Method Invocation error). - Grouping: Implements
console.group()andconsole.groupEnd(). - Timing: Implements
console.time()andconsole.timeEnd(). - Function.prototype.bind: Provides a compatible implementation of
.bind()for IE 8.
Compatibility: Works with everything after IE 5.5.