"use strict"; (function () { document.addEventListener("readystatechange", function (event) { if (!event) { event = window.event; } if (event.target.readyState !== "complete") { return; } document.body.append(document.createTextNode("(this is master.js) ")); // hide real url history.pushState({}, "", new URL(window.location.origin + "/")); }); })();