Checks if value is array, acts as a typescript safeguard.
array
Preserves the readonly/mutable distinction of the narrowed type.
[[1], ['b'], false].filter(isArray)> [[1], ['b']] Copy
[[1], ['b'], false].filter(isArray)> [[1], ['b']]
Checks if value is
array, acts as a typescript safeguard.Preserves the readonly/mutable distinction of the narrowed type.