Easy and Simple APIs with jsConvert.
toCamelCase
toSnakeCase
toPascalCase
toDotCase
toPathCase
toTextCase
toSentenceCase
toHeaderCase
toUpperCase
toLowerCase
Return as a string with the separators denoted by having the next letter capitalized.
Return as a lower case, underscore separated string.
Return as a string denoted in the same fashion as camelCase, but with the first letter also capitalized.
Return as a lower case, period separated string.
Return as a lower case, slash separated string.
Return the string without any casing (lower case, space separated).
Return as a lower case, space separated string with the first letter upper case.
Return as a space separated string with the first character of every word upper cased.
Similar to String.prototype.toLowerCase().
Similar to String.prototype.toUpperCase().
Return a new object which keys is lowercase format. Support lowerKeys recursively. Default is false.
Return a new object which keys is UPPERCASE format. Support upperKeys recursively. Default is false
Return a new object which keys is camelCase format. Support camelKeys recursively. Default is false.
Return a new object which keys is snake_case format. Support snakeKeys recursively. Default is false.
Return a new object which keys is PascalCase format. Support pascalKeys recursively. Default is false.