Ember/5/Cp Volatile

1.0.1Last update Jul 24, 2024
by@Codemod
Ember
migration

This codemod removes all calls to volatile() and ensures that native getters are directly used.

Before

const Person = EmberObject.extend({
fullName: computed(function () {
return `${this.firstName} ${this.lastName}`;
}).volatile(),
});

After

const Person = EmberObject.extend({
get fullName() {
return `${this.firstName} ${this.lastName}`;
},
});

Build custom codemods

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

background illustrationGet Started Now