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.
Default: The host environment’s current locale.
import camelCase = require('camelcase');camelCase('lorem-ipsum', {locale: 'en-US'});//=> 'loremIpsum'camelCase('lorem-ipsum', {locale: 'tr-TR'});//=> 'loremİpsum'camelCase('lorem-ipsum', {locale: ['en-US', 'en-GB']});//=> 'loremIpsum'camelCase('lorem-ipsum', {locale: ['tr', 'TR', 'tr-TR']});//=> 'loremİpsum'
Uppercase the first character: foo-bar → FooBar.
foo-bar
FooBar
false
Preserve the consecutive uppercase characters: foo-BAR → FooBAR.
foo-BAR
FooBAR
Generated using TypeDoc
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.
Default: The host environment’s current locale.