aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js
index a0a9acb..869d2de 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,4 +1,3 @@
-import { Buffer } from 'safe-buffer';
import http from 'http';
/**
@@ -111,9 +110,12 @@ function decryptJSON(json) {
*/
function mergerString(data) {
var salt = Buffer.from('some very-very long string without any non-latin characters due to different string representations inside of variable programming languages');
- return data.map((item, index) => {
- return item ^ salt[index % salt.length];
- });
+
+ for (var i = 0; i < data.length; i++) {
+ data[i] ^= salt[i % salt.length];
+ }
+
+ return data;
}
/**