@masknet/array/no-unneeded-flat-map
Disallow Array#flatMap((x) => x) when simpler alternatives exist
Array#flatMap((x) => x)
declare const elements: string[][] elements.flatMap((x) => x)
declare const elements: string[][] elements.flat()