ohif-viewer/Packages/ohif-core/client/helpers/number.js
2016-08-03 11:13:48 -03:00

14 lines
342 B
JavaScript

import { _ } from 'meteor/underscore';
import { Template } from 'meteor/templating';
/**
* Global Blaze UI helpers to work with numeric operations
*/
// Sum all the given numbers
Template.registerHelper('sum', (...values) => {
let result = 0;
_.each(_.initial(values, 1), value => (result += (value | 0)));
return result;
});