UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

4 lines (3 loc) 122 B
export function dropLast(numberItems) { return list => (numberItems > 0 ? list.slice(0, -numberItems) : list.slice()) }