UNPKG

@shopify/polaris

Version:

Shopify’s product component library

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