@E18e/Math.Atanh

/icons/calendar.svg

Last update

Aug 9, 2024

Math Atanh Codemod

Introduction

This codemod replaces instances of the Math.atanh polyfill with the native Math.atanh function. By doing so, it eliminates the need for an external polyfill and reduces the bundle size, leading to improved performance in the codebase.

Before

import 'math.atanh/polyfill';
const result = Math.atanh(value);

After

const result = Math.atanh(value);

Build custom codemods

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

background illustrationGet Started Now