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

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 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.