Skip to content

Instantly share code, notes, and snippets.

@kcmr
Created November 25, 2017 21:21
Show Gist options
  • Save kcmr/480ce8d8097ceb9a84a1ed5dec4388cd to your computer and use it in GitHub Desktop.
Save kcmr/480ce8d8097ceb9a84a1ed5dec4388cd to your computer and use it in GitHub Desktop.
Log utils
(function() {
'use strict';
function clearStyleWarnings(fn) {
return function(first, ...rest) {
if (!first.match('Could not find style data')) {
fn.call(this, first, ...rest);
}
}
}
console.warn = clearStyleWarnings(console.warn);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment