You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The signature for spread is <x-:a> which allows for odd returns like:
$spread("a") -> "a"
$spread(1) -> 1
$spread([]) -> null
$spread([1]) -> [1]
I think the initial parameter should be o for object and reject any of these cases as a bad arg1...
e.g.,: