@klodianimeri/pipejs
Version:
Pipe functions that provide convenient and efficient ways to work with iterators.
1 lines • 110 B
text/typescript
export const push = (array: Array<any>, value: any) => { array.splice(array.length, 0, value); return array; }