@E18e/Array.Prototype.Reduce

1.0.5Last update Aug 9, 2024
by@e18e

array.prototype.reduce Codemod

Introduction

This codemod replaces occurrences of the Array.prototype.reduce method with a more efficient implementation. By ensuring that the code uses the built-in reduce method correctly and efficiently, the codemod aims to streamline the codebase and improve performance without introducing unnecessary dependencies.

Before

const sum = [1, 2, 3].reduce((acc, val) => acc + val, 0);

After

const sum = [1, 2, 3].reduce((acc, val) => acc + val, 0);

Build custom codemods

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

background illustrationGet Started Now