Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
Ember
migration
byCodemod
Ember/5/Array Wrapper
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