open-consul/ui/packages/consul-ui/app/helpers/slugify.js

10 lines
295 B
JavaScript

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);