(collection: Iterable<boolean>)
| 278 | * @since 2.0.0 |
| 279 | */ |
| 280 | export const some = (collection: Iterable<boolean>): boolean => { |
| 281 | for (const b of collection) { |
| 282 | if (b) { |
| 283 | return true |
| 284 | } |
| 285 | } |
| 286 | return false |
| 287 | } |
no outgoing calls
no test coverage detected