9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function capitalize([str]) {
|
|
if (typeof str !== 'string') return '';
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
}
|
|
|
|
export default helper(capitalize);
|