source:
node_modules/es-toolkit/dist/string/lowerFirst.mjs@
a762898
| Last change on this file since a762898 was a762898, checked in by , 5 months ago | |
|---|---|
|
|
| File size: 118 bytes | |
| Line | |
|---|---|
| 1 | function lowerFirst(str) { |
| 2 | return str.substring(0, 1).toLowerCase() + str.substring(1); |
| 3 | } |
| 4 | |
| 5 | export { lowerFirst }; |
Note:
See TracBrowser
for help on using the repository browser.
