Version 1.8 — Realize Notes
Core Package (@yamato-daiwa/es-extensions)
Breaking Changes
Working with Arrays
Renaming of getIndexesOfArrayElementsWhichSatisfiesThePredicate
to
getIndexesOfSatisfiesThePredicateArrayElements
- Reason
- Possible to express what function does by less amount of characters without widening of meaning
- Changes in your code will required if
- You have directory used the
getIndexesOfArrayElementsWhichSatisfiesThePredicate
function
- Migration
- Using the appropriate functionality of your code editor or IDE, replace
getIndexesOfArrayElementsWhichSatisfiesThePredicate
occurrences with
getIndexesOfSatisfiesThePredicateArrayElements
in all files of the project.