Guest User

Untitled

a guest
Oct 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var alertFallback = false;
  2. if (typeof console === "undefined" || typeof console.log === "undefined") {
  3. console = {};
  4. if (alertFallback) {
  5. console.log = function (msg) {
  6. alert(msg);
  7. };
  8. } else {
  9. console.log = function () { };
  10. }
  11. }
Add Comment
Please, Sign In to add comment