format: remove unused param

This commit is contained in:
LuanRT
2021-10-24 17:07:14 -03:00
parent 3a9d8a411e
commit 368dfc4ea3

View File

@@ -15,7 +15,7 @@ class NToken {
let transformations = this.getTransformationData(this.raw_code);
// Identifies the necessary transformation functions and emulates them accordingly.
transformations = transformations.map((el, i) => {
transformations = transformations.map((el) => {
if (el != null && typeof el != 'number') {
const is_reverse_base64 = el.includes('case 65:');
if (el.includes('function(d){for(var')) {