Skip to content
Snippets Groups Projects
capitalize.js 266 B
Newer Older
  • Learn to ignore specific revisions
  • Eugen Ciur's avatar
    Eugen Ciur committed
    import { helper } from '@ember/component/helper';
    
    
    export function capitalize([str]) {
      /*
      * Returns copy of input string with first
      * letter converted to upper case
      */
      return `${str[0].toUpperCase()}${str.slice(1)}`;
    }
    
    export default helper(capitalize);