Ember
migration
byCodemod

Ember/5/Array Wrapper

/icons/calendar.svg

Last update

Jan 10, 2025

This codemod removes any usage of new with A, and calls A as a standard function.

Before

import { A } from "@ember/array";
let arr = new A();

After

import { A as emberA } from "@ember/array";
let arr = A();

Build custom codemods

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

background illustrationGet Started Now