UNPKG

@aws/pdk

Version:

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

15 lines (11 loc) 237 B
var slice = /*#__PURE__*/ require("../slice.js"); function dropLastWhile(pred, xs) { var idx = xs.length - 1; while (idx >= 0 && pred(xs[idx])) { idx -= 1; } return slice(0, idx + 1, xs); } module.exports = dropLastWhile;