is-number Codemod
Introduction
This codemod removes the dependency on the is-number npm module and replaces its usage with a built-in check for determining if a value is a number. This not only reduces unnecessary dependencies but also enhances performance by using native JavaScript features.
Before
javascript
After
javascript