UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 181 B
/** * Remove a single item from the array. * (it won't remove duplicates, just a single item) */ declare function remove(arr: any, item: any): void; export default remove;