From 26a09f08cf1ed43c640879f23fdad56c5c9282f7 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:02:38 +0800 Subject: [PATCH] TODO#139884 Banner 1 文案調整 --- PAMapp/node_modules/css-loader/node_modules/camelcase/index.d.ts | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/PAMapp/node_modules/css-loader/node_modules/camelcase/index.d.ts b/PAMapp/node_modules/css-loader/node_modules/camelcase/index.d.ts index 169b634..9db94e5 100644 --- a/PAMapp/node_modules/css-loader/node_modules/camelcase/index.d.ts +++ b/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� 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' -- Gitblit v1.8.0