Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
migration
by
Codemod
Ember/5/Array Wrapper
Made for
Ember
Last update
Apr 23, 2024
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