is-date-object Codemod
Introduction
This codemod replaces the usage of the is-date-object npm module with a built-in ES feature for determining if an object is a Date. It leverages Object.prototype.toString.call for this check, thereby reducing dependencies and improving performance.
Before
ts
After
ts