@E18e/Index Of

/icons/calendar.svg

Last update

Aug 9, 2024

Index Of Codemod

Introduction

This codemod replaces instances of the index-of array method with the built-in indexOf method. By utilizing native JavaScript features, this transformation reduces dependency on external libraries, improving performance and bundle size.

Before

import indexOf from 'index-of';
const items = [1, 2, 3];
const index = indexOf(items, 2);

After

const items = [1, 2, 3];
const index = items.indexOf(2);

Build custom codemods

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

background illustrationGet Started Now