UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

4 lines (3 loc) 109 B
export function drop(howManyToDrop, ) { return list => list.slice(howManyToDrop > 0 ? howManyToDrop : 0) }