UNPKG

@klodianimeri/pipejs

Version:

Pipe functions that provide convenient and efficient ways to work with iterators.

1 lines 104 B
export const Yield = (value: any): IteratorYieldResult<any> => { return { value: value, done: false } };