source: node_modules/es-toolkit/dist/compat/array/remove.mjs@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 301 bytes
Line 
1import { remove as remove$1 } from '../../array/remove.mjs';
2import { identity } from '../../function/identity.mjs';
3import { iteratee } from '../util/iteratee.mjs';
4
5function remove(arr, shouldRemoveElement = identity) {
6 return remove$1(arr, iteratee(shouldRemoveElement));
7}
8
9export { remove };
Note: See TracBrowser for help on using the repository browser.