From a3ac9e2c0f726cf837f776bc5e44459edf92881e Mon Sep 17 00:00:00 2001 From: Stefan Eckert Date: Fri, 4 Dec 2020 17:38:22 +0100 Subject: [PATCH] fix(math): fix white spaces --- src/operator.js | 1 - src/utils/math.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/operator.js b/src/operator.js index 629ad249..a25a33e2 100644 --- a/src/operator.js +++ b/src/operator.js @@ -16,7 +16,6 @@ let elCount; const allChecks = [0, 1, 2, 6, 24, 120, 720, 5760, 51840, 518400, 5702400, 68428800, 889574400, 12454041600, 186810624000]; const collect = []; - let resultCacheIndex = -1; let handlingCache = false; const resultCache = []; diff --git a/src/utils/math.js b/src/utils/math.js index 6a92b4ac..35cb8369 100644 --- a/src/utils/math.js +++ b/src/utils/math.js @@ -1,4 +1,3 @@ - export function isArray(arr) { return Array.isArray(arr) || ArrayBuffer.isView(arr); }