-
-
Save Announcement/df57adc0ad17e4888d6c3450964c671b to your computer and use it in GitHub Desktop.
moar tipezzzz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const pipe = <T, K>( | |
iterable: IterableIterator<T>, | |
seed: K, | |
fn: (a: T) => K | |
): T => { | |
const iterator: IterableIterator<T> = iterable[Symbol.iterator]() | |
if (iterable instanceof GeneratorFunction) { | |
iterator.next() | |
} | |
let result: IteratorResult<T> = iterator.next(seed) | |
while (result.done === false) { | |
result = iterator.next(fn(result.value)) | |
} | |
return result.value | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment