JSFiddle - React, Tailwind, and code Playground
by darthdeus
JavaScript
function wrapLog() {
var orig = console.log;
if (orig.wrapped) return;
var newLog = function() {
console.warn("I GOT THIS");
orig.apply(console, arguments);
};
newLog.wrapped = true;
console.log = newLog;
}
wrapLog();
console.log("ahojacek");