spacebars.js 185 B

12345678
  1. Template.registerHelper('pluralize', function (n, thing) {
  2. // Fairly stupid pluralizer.
  3. if (n === 1) {
  4. return '1 ' + thing;
  5. } else {
  6. return n + ' ' + thing + 's';
  7. }
  8. });