7 lines
199 B
JavaScript
7 lines
199 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
import { humanizeOsmTag as format } from '../utils/format-text';
|
|
|
|
export default helper(function humanizeOsmTag([text]) {
|
|
return format(text);
|
|
});
|