1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/utils/titleize.js

16 lines
533 B
JavaScript

import {capitalize} from 'ember-string';
const lowerWords = ['of', 'a', 'the', 'and', 'an', 'or', 'nor', 'but', 'is', 'if',
'then', 'else', 'when', 'at', 'from', 'by', 'on', 'off', 'for',
'in', 'out', 'over', 'to', 'into', 'with'];
export default function (input) {
let words = input.split(' ').map((word, index) => {
if (index === 0 || lowerWords.indexOf(word) === -1) {
word = capitalize(word);
}
return word;
});
return words.join(' ');
}