APISide effectsconsumeOn this pageFunction: consume() consume(iterable): void Iterates through iterable causing lazy operations to run. Parameters • iterable: Iterable<unknown, any, any> Returns void Example const iterable = pipe( [`sloth`, 2, 3], each(console.log),)// No outputconsume(iterable)//=> sloth//=> 2//=> 3 Defined in side-effects.d.ts:223