mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Helper from '@ember/component/helper';
|
|
import { pluralize } from 'ember-inflector';
|
|
|
|
export function pluralizeHelper([term, count]) {
|
|
return count === 1 ? term : pluralize(term);
|
|
}
|
|
|
|
export default Helper.helper(pluralizeHelper);
|