UNPKG

cloudworker-proxy

Version:
5 lines (4 loc) 129 B
import take from '../take.js'; export default function dropLast(n, xs) { return take(n < xs.length ? xs.length - n : 0, xs); }