open-consul/ui/packages/consul-ui/app/helpers/slugify.js
Ronald 6bcb98ea71
Add UI copyright headers files (#16614)
* Add copyright headers to UI files

* Ensure copywrite file ignores external libs
2023-03-14 09:18:55 -04:00

15 lines
373 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { helper } from '@ember/component/helper';
// TODO: Currently I'm only using this for hardcoded values
// so ' ' to '-' replacement is sufficient for the moment
export function slugify([str = ''], hash) {
return str.replace(/ /g, '-').toLowerCase();
}
export default helper(slugify);