Skip to content

Instantly share code, notes, and snippets.

@pascaliske
Last active June 18, 2019 11:32
Show Gist options
  • Save pascaliske/554ac1d5fe2c051e621feaec37817ecc to your computer and use it in GitHub Desktop.
Save pascaliske/554ac1d5fe2c051e621feaec37817ecc to your computer and use it in GitHub Desktop.
Prevent `console.log` overrides
(function (window) {
var log = window.console.log, fn = function () { return log; };
Object.defineProperty(window.console, 'log', { set: fn, get: fn });
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment