es-get-iterator Codemod
Introduction
This codemod replaces the usage of the es-get-iterator module with native ES features. It converts calls to the getIterator function into a more efficient form that utilizes the Symbol.iterator property directly, thus reducing dependency on external libraries.
Before
javascript
After
javascript