UNPKG

react-ui-component

Version:
7 lines (6 loc) 127 B
const capitalize = (str='') => { return str.charAt(0).toUpperCase() + str.slice(1) } module.exports = { capitalize, }