mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-13 10:07:01 +02:00
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
import { helper as buildHelper } from '@ember/component/helper';
|
|
import { capitalize } from 'vault/helpers/capitalize';
|
|
import { humanize } from 'vault/helpers/humanize';
|
|
import { dasherize } from 'vault/helpers/dasherize';
|
|
|
|
export function toLabel(val) {
|
|
return capitalize([humanize([dasherize(val)])]);
|
|
}
|
|
|
|
export default buildHelper(toLabel);
|