UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

6 lines (4 loc) 194 B
export function drop(howManyToDrop, listOrString){ if (arguments.length === 1) return _list => drop(howManyToDrop, _list) return listOrString.slice(howManyToDrop > 0 ? howManyToDrop : 0) }