Skip to main content
Module

x/rambda/drop.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function drop(howManyToDrop, listOrString){ if (arguments.length === 1) return _list => drop(howManyToDrop, _list)
return listOrString.slice(howManyToDrop > 0 ? howManyToDrop : 0)}