Remove spectific error at console log
Leave a Comment
console.error = (function (_error) {
return function (message) {
if (
typeof message !== 'string' ||
message.indexOf('component is `contentEditable`') === -1
) {
_error.apply(console);
}
};
})(console.error);