UNPKG

@aws/pdk

Version:

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

10 lines (8 loc) 201 B
import slice from "../slice.js"; export default function dropLastWhile(pred, xs) { var idx = xs.length - 1; while (idx >= 0 && pred(xs[idx])) { idx -= 1; } return slice(0, idx + 1, xs); }