@lvce-editor/main-process 6.47.0 → 6.47.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mainProcessMain.js +3 -0
- package/package.json +1 -1
package/dist/mainProcessMain.js
CHANGED
|
@@ -3420,6 +3420,9 @@ const Dash = '-';
|
|
|
3420
3420
|
const Space$3 = ' ';
|
|
3421
3421
|
|
|
3422
3422
|
const firstLetterLowerCase = string => {
|
|
3423
|
+
if (/^[A-Z][A-Z0-9]*$/.test(string)) {
|
|
3424
|
+
return string;
|
|
3425
|
+
}
|
|
3423
3426
|
return string[0].toLowerCase() + string.slice(1);
|
|
3424
3427
|
};
|
|
3425
3428
|
const camelCase = string => {
|