Skip to content

Commit

Permalink
remove function export from helper blueprint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Apr 15, 2019
1 parent 8880ba8 commit 254d902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { helper } from '@ember/component/helper';

export function <%= camelizedModuleName %>(params/*, hash*/) {
function <%= camelizedModuleName %>(params/*, hash*/) {
return params;
}

Expand Down
2 changes: 1 addition & 1 deletion node-tests/fixtures/helper/helper.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { helper } from '@ember/component/helper';

export function fooBarBaz(params/*, hash*/) {
function fooBarBaz(params/*, hash*/) {
return params;
}

Expand Down

0 comments on commit 254d902

Please sign in to comment.