array.prototype.unshift Codemod
Introduction
This codemod replaces occurrences of the array.prototype.unshift function from an npm package with the built-in Array.prototype.unshift method. This change reduces unnecessary dependencies, thus optimizing the codebase's size and performance.
Before
javascript
After
javascript