保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
PAMapp/node_modules/css-loader/node_modules/camelcase/index.d.ts
@@ -17,6 +17,8 @@
      /**
      The locale parameter indicates the locale to be used to convert to upper/lower case according to any locale-specific case mappings. If multiple locales are given in an array, the best available locale is used.
      Setting `locale: false` ignores the platform locale and uses the [Unicode Default Case Conversion](https://unicode-org.github.io/icu/userguide/transforms/casemappings.html#simple-single-character-case-mapping) algorithm.
      Default: The host environment’s current locale.
      @example
@@ -33,7 +35,7 @@
      //=> 'loremİpsum'
      ```
      */
      readonly locale?: string | readonly string[];
      readonly locale?: false | string | readonly string[];
   }
}
@@ -57,8 +59,8 @@
camelCase('Foo-Bar');
//=> 'fooBar'
camelCase('розовый_пушистый_единороги');
//=> 'розовыйПушистыйЕдинороги'
camelCase('розовый_пушистый_единорог');
//=> 'розовыйПушистыйЕдинорог'
camelCase('Foo-Bar', {pascalCase: true});
//=> 'FooBar'