@E18e/Is Regexp

/icons/calendar.svg

Last update

Aug 9, 2024

is-regexp Codemod

Introduction

This codemod removes the dependency on the is-regexp package by replacing its function calls with a native JavaScript expression that checks if a value is an instance of RegExp. This change ultimately reduces the bundle size and improves the performance of the codebase by eliminating unnecessary imports.

Before

import isRegexp from 'is-regexp';
const result = isRegexp(value);

After

const result = (value instanceof RegExp);

Build custom codemods

Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community

background illustrationGet Started Now