Fixing the last one

This commit is contained in:
Silversthorn 2022-06-04 02:20:45 +02:00
parent 61806b6050
commit 757959e89d

View File

@ -86,10 +86,9 @@ function parseStyle(string) {
return final;
}
function clearObfuscators() {
var i = obfuscators.length;
for (; i--;) {
clearInterval(obfuscators[i]);
}
obfuscators.slice().reverse().forEach(item => {
clearInterval(item);
});
obfuscators = [];
}
function initParser(input, output) {