@klodianimeri/pipejs
Version:
Pipe functions that provide convenient and efficient ways to work with iterators.
1 lines • 104 B
text/typescript
export const Yield = (value: any): IteratorYieldResult<any> => { return { value: value, done: false } };
Pipe functions that provide convenient and efficient ways to work with iterators.