From c006f49dc1eee9000100e33fbd19b3955d829fad Mon Sep 17 00:00:00 2001 From: LuanRT Date: Tue, 23 Nov 2021 06:09:12 -0300 Subject: [PATCH] chore: remove unnecessary param --- lib/NToken.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NToken.js b/lib/NToken.js index 868f50a0..d3a17f90 100644 --- a/lib/NToken.js +++ b/lib/NToken.js @@ -14,7 +14,7 @@ class NToken { let n_token = n.split(''); try { - let transformations = this.getTransformationData(this.raw_code); + let transformations = this.getTransformationData(); transformations = transformations.map((el) => { if (el != null && typeof el != 'number') { const is_reverse_base64 = el.includes('case 65:');