chore: improve typescript usage

pull/5690/head
Pavel Zavora 2021-03-08 21:36:26 +01:00
parent 79ee1deac6
commit 6c3b38247a
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ export function fastConcat<T = any>(...args: T[][]): T[] {
let childLength = 0
for (let i = 0; i < length; i++) {
item = arguments[i]
item = args[i]
if (Array.isArray(item)) {
childLength = item.length
for (let j = 0; j < childLength; j++) {