EaglerForgeInjector/injector.minify.js
2025-03-12 18:05:39 +08:00

58 lines
1.6 KiB
JavaScript

const MINIFY = function () {
return {
visitor: {
Identifier(path) {
if (path.node.name === "$ptr") {
path.node.name = "r";
}
if (path.node.name === "$tmp") {
path.node.name = "m";
}
if (path.node.name === "$thread") {
path.node.name = "t";
}
},
}
};
};
async function shronk(input) {
let isHtml = true;
let inputHtml = input;
// Check if the input is raw JavaScript
if (!input.trim().startsWith('<')) {
isHtml = false;
inputHtml = `<script>${input}</script>`;
}
_status("[MINIFY] Parsing html...");
await wait(50);
const parser = new DOMParser();
const doc = parser.parseFromString(inputHtml, 'text/html');
const scriptTags = doc.querySelectorAll('script');
await wait(100); //trying to get chrome to gc
for (let i = 0; i < scriptTags.length; i++) {
const scriptTag = scriptTags[i];
const code = scriptTag.textContent;
_status("[MINIFY] Transpiling script #" + (i + 1) + " of length " + Math.round(code.length / 1000) + "k...");
await wait(150);
const output = Babel.transform(code, {
plugins: globalThis.doShronkPlus ? [
MINIFY()
] : []
});
scriptTag.textContent = output.code;
await wait(10);
}
_status("[MINIFY] Job complete!");
await wait(50);
if (isHtml) {
return doc.documentElement.outerHTML;
} else {
return doc.querySelector('script').textContent;
}
}