swc/crates/swc_bundler/tests/.cache/deno/9cc8d5abc567d953176a286c2b3f91548ed40f0c.ts

9 lines
210 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_dropLast.js
import take from '../take.js';
export default function dropLast(n, xs) {
return take(n < xs.length ? xs.length - n : 0, xs);
}