-
-
Save jaawerth/a6b30d5fcd95e44fbfa65e1942417747 to your computer and use it in GitHub Desktop.
This file contains 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 = iterable[Symbol.iterator]() | |
if (iterable instanceof GeneratorFunction) { | |
iterator.next() | |
} | |
let result = iterator.next(seed) | |
while (!result.done) { | |
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