6 lines
186 B
JavaScript
6 lines
186 B
JavaScript
|
import { helper } from '@ember/component/helper';
|
||
|
|
||
|
export default helper(function ([a, ...toSubtract]) {
|
||
|
return toSubtract.reduce((total, value) => total - parseInt(value, 0), a);
|
||
|
});
|