- BREAKING: Drop Node < 18.
- BREAKING: Add
typescript
from 3 to 5 to optionalpeerDependencies
.
- Add:
removeMatch()
removes some items matching the given predicate. It's a combination of[].findIndex()
andremove()
or[].filter()
with inversion and limit. - Add:
updateMatch()
updates some items matching the given predicate. It's a combination of[].map()
with limit.
- Initial release.