summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs/app/helpers/pluralize.js
blob: b1f1a2acc8f8561780d0b95dff73ca9633b689a5 (plain)
1
2
3
4
5
6
7
8
import Ember from 'ember';
import { pluralize } from 'ember-inflector';

export function pluralizeHelper([singular, count]/*, hash*/) {
    return count === 1 ? singular : pluralize(singular);
}

export default Ember.Helper.helper(pluralizeHelper);