This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/array/takeRightWhile.js
T

15 lines
356 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function takeRightWhile(arr, shouldContinueTaking) {
for (let i = arr.length - 1; i >= 0; i--) {
if (!shouldContinueTaking(arr[i])) {
return arr.slice(i + 1);
}
}
return arr.slice();
}
exports.takeRightWhile = takeRightWhile;