Wrapper of change-case to create case converter, validator and etc.
npm install uncase
yarn add uncase
pnpm add uncase
import { getCaseConverter } from 'uncase'
const result = getCaseConverter('camelCase')('hello-world')
console.log(result)
// => { input: 'hello-world', changed: true, output: 'helloWorld' }
import { isCamelCase, isPascalCase } from 'uncase/is'
console.log(isCamelCase('hello-world'))
// => false
console.log(isPascalCase('HelloWorld'))
// => true
- Type:
(caseType: CaseType, options: Options = {}) => CaseConverter
Get a converter by caseType and convert the given input.
/**
* Case converter
*/
export type CaseConverter = (input: string) => CaseConvertResult
/**
* Case convert result
*/
export type CaseConvertResult = {
/**
* whether output has changed from input
*/
changed: boolean
/**
* input value
*/
input: string
/**
* converted value
*/
output: string
}
/**
* All case converter names in raw and `camelCase`
*/
export type CaseType =
| 'camelCase'
| 'capitalCase'
| 'Capital Case'
| 'CONSTANT_CASE'
| 'constantCase'
| 'dot.case'
| 'dotCase'
| 'kebab-case'
| 'kebabCase'
| 'noCase'
| 'no case'
| 'Pascal_Snake_Case'
| 'pascalCase'
| 'PascalCase'
| 'pascalSnakeCase'
| 'path/case'
| 'pathCase'
| 'sentenceCase'
| 'Sentence case'
| 'snake_case'
| 'snakeCase'
| 'Train-Case'
| 'trainCase'
isCamelCase
isCapitalCase
isConstantCase
isDotCase
isKebabCase
isNoCase
isPascalCase
isPascalSnakeCase
isPathCase
isSentenceCase
isSnakeCase
isTrainCase
export type CaseValidator = (input: string) => boolean
Dynamic case convert. Useful to create ESLint case convention rules.