console-shim
console-shim copied to clipboard
Make window.console enumerable in older browsers.
The console spec says that the console functions are enumerable. In some order browsers this may not the case like; FF < 49
Some logger wrappers use Object.keys(window.console) to get all functions, so this fails if console is not enumerable.