mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
19 lines
551 B
JavaScript
19 lines
551 B
JavaScript
import Ember from 'ember';
|
|
var 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'];
|
|
|
|
function titleize(input) {
|
|
var words = input.split(' ').map(function (word, index) {
|
|
if (index === 0 || lowerWords.indexOf(word) === -1) {
|
|
word = Ember.String.capitalize(word);
|
|
}
|
|
|
|
return word;
|
|
});
|
|
|
|
return words.join(' ');
|
|
}
|
|
|
|
export default titleize;
|