(collection: Iterable<A>)
| 302 | */ |
| 303 | export const fromIterable = <A>(collection: Iterable<A>): Array<A> => |
| 304 | Array.isArray(collection) ? collection : Array.from(collection) |
| 305 | |
| 306 | /** |
| 307 | * Normalizes a value that is either a single element or an array into an array. |
| 308 | * |
no outgoing calls
no test coverage detected
searching dependent graphs…