16 lines
425 B
JavaScript
16 lines
425 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
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);
|