Sweta Dodiya
Sweta Dodiya

Reputation: 21

Capitalize only 1st letter instead of all the words

I am trying to capitalize only 1st letter. for Example: FIRST NAME converted to First name

Using below code :

 1. textTransform: 'capitalize', // Result is  First Name
 2. I tried to use import startCase from 'lodash.startcase';
          and used startCase('FIRST NAME') // Result is  First Name

Please let me know if there is any way to implement this

Upvotes: 2

Views: 131

Answers (1)

Related Questions