@E18e/Math.Log1p

/icons/calendar.svg

Last update

Aug 9, 2024

Math Log1p Codemod

Introduction

This codemod replaces instances of Math.log1p polyfills imported from the math.log1p/polyfill module with the native Math.log1p function. This reduces unnecessary dependencies and leverages built-in JavaScript features, ultimately improving performance and reducing bundle size.

Before

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

After

const result = Math.log1p(value);

Build custom codemods

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

background illustrationGet Started Now