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/compat/array/remove.mjs
T

10 lines
301 B
JavaScript

import { remove as remove$1 } from '../../array/remove.mjs';
import { identity } from '../../function/identity.mjs';
import { iteratee } from '../util/iteratee.mjs';
function remove(arr, shouldRemoveElement = identity) {
return remove$1(arr, iteratee(shouldRemoveElement));
}
export { remove };