UNPKG

polaris-glints

Version:

Glints forked polaris react

7 lines (5 loc) 164 B
function capitalize(word = '') { const wordLower = word.toLowerCase(); return wordLower.charAt(0).toUpperCase() + wordLower.slice(1); } export { capitalize };