From 8bf5206daff4b1db5d81985fbc050c7aefd1f614 Mon Sep 17 00:00:00 2001 From: jos Date: Sat, 1 Feb 2020 17:42:32 +0100 Subject: [PATCH] Fix lint error --- src/utils/array.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/array.js b/src/utils/array.js index b65cae44d..2f3330a4e 100644 --- a/src/utils/array.js +++ b/src/utils/array.js @@ -523,7 +523,7 @@ export function generalize (a) { * @return string */ export function getArrayDataType (array, typeOf) { - let type = undefined // to hold type info + let type // to hold type info let length = 0 // to hold length value to ensure it has consistent sizes for (let i = 0; i < array.length; i++) {