source: node_modules/@reduxjs/toolkit/src/query/utils/capitalize.ts@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Added visualizations

  • Property mode set to 100644
File size: 95 bytes
Line 
1export function capitalize(str: string) {
2 return str.replace(str[0], str[0].toUpperCase())
3}
Note: See TracBrowser for help on using the repository browser.