ember-modules-codemod
ember-modules-codemod copied to clipboard
Duplicate name
Got into this situation:
import Component from '@ember/component';
const Component = Component.extend({
// ...
});
Component.reopenClass({
positionalParams: ['positionalParamValue']
});
export default Component;
And
import { helper } from '@ember/component/helper';
export function helper([value]) {
}
What was the code before running the codemod?