UNPKG

kibana-with-account

Version:

kibana-with-account is develop based kibana project

11 lines (9 loc) 259 B
var _ = require('lodash'); // Turns thisIsASentence to // This Is A Sentence module.exports = function toTitleCase(name) { return name .split(/(?=[A-Z])/) .map(function (word) { return word[0].toUpperCase() + _.rest(word).join(''); }) .join(' '); };