UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

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