Returns true the first time f returns true. Useful for spotting any occurrence of data, and exiting quickly
f
some([1, 2, 3, 4], e => e % 3 === 0);// Yields: true Copy
some([1, 2, 3, 4], e => e % 3 === 0);// Yields: true
Iterable
Filter function
Returns true the first time
f
returns true. Useful for spotting any occurrence of data, and exiting quicklyParam: it
Iterable
Param: f
Filter function
Returns