@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.
@@ -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 => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/main-process",
3
- "version": "6.47.0",
3
+ "version": "6.47.1",
4
4
  "keywords": [
5
5
  "lvce-editor",
6
6
  "electron"