8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function incr(params/*, hash*/) {
|
|
return parseInt(params) + 1;
|
|
}
|
|
|
|
export default helper(incr);
|