@klodianimeri/pipejs
Version:
Pipe functions that provide convenient and efficient ways to work with iterators.
16 lines (14 loc) • 420 B
text/typescript
import { Pipe } from "../pipe.js";
export function drop(count: number): Pipe {
count = typeof count === 'number' ? count : 0;
return () => {
let i: number = -1;
return (result: IteratorResult<any>): IteratorResult<any> => {
++i;
if (result?.done) return result;
if (i >= count) {
return result;
}
};
}
}