8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function divide(params/*, hash*/) {
|
|
return Math.round(params[0]/params[1]);
|
|
}
|
|
|
|
export default helper(divide);
|