export function concat(...arrays: T[][]): T[] { return ([] as T[]).concat(...arrays) }