From 508a3711757699a1d83ba60cb510aa2aece37437 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Fri, 5 May 2017 15:54:59 +0000 Subject: [PATCH] Fixed offset checker array initialisation --- src/core/operations/StrUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/StrUtils.js b/src/core/operations/StrUtils.js index 4203efa6..28c5c263 100755 --- a/src/core/operations/StrUtils.js +++ b/src/core/operations/StrUtils.js @@ -385,7 +385,7 @@ const StrUtils = { runOffsetChecker: function(input, args) { let sampleDelim = args[0], samples = input.split(sampleDelim), - outputs = [], + outputs = new Array(samples.length), i = 0, s = 0, match = false,