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 methods collection/map and collection/filter don't use the collection/make_ utility to switch between object/method and array/mehtod. The iterator functions are provided with numerical indices and an array is always returned.
collection/reject and collection/pluck should be fine once filter and map use make_
This is really minor but make_ could use lang/isNumber instead of typeof, to avoid using array iterators on objects like {length: NaN}
The text was updated successfully, but these errors were encountered:
collection/map
andcollection/filter
don't use thecollection/make_
utility to switch between object/method and array/mehtod. The iterator functions are provided with numerical indices and an array is always returned.collection/reject
andcollection/pluck
should be fine once filter and map use make_lang/isNumber
instead of typeof, to avoid using array iterators on objects like{length: NaN}
The text was updated successfully, but these errors were encountered: