is-boolean-object Codemod
Introduction
This codemod replaces the usage of the is-boolean-object package with the native Object.prototype.toString.call method. By utilizing a built-in ES feature, the codemod reduces dependency on external packages, leading to a lighter codebase and potentially improved performance.
Before
javascript
After
javascript