CaseValidation
isAlpha
Checks if a string contains only alphabetic characters (A-Z, a-z).
isAlpha('HelloWorld') // trueisAlpha('Hello123') // false
isAlphaNumeric
Checks if a string contains only alphanumeric characters (A-Z, a-z, 0-9).
isAlphaNumeric('Hello01') // trueisAlphaNumeric('1234567890') // false
isSnakeCase
Checks if a string is in snake_case format.
// ValidisSnakeCase('snake_case_example') // trueisSnakeCase('hello_world') // true
// Valid with alphanumeric flagisSnakeCase('with_1234', true) // trueisSnakeCase('pi_3_14', true) // true
// InvalidisSnakeCase('123at_start') // falseisSnakeCase(' no_space_allowed') // falseisSnakeCase('no_CAPS') // false
isKebabCase
Checks if a string is in kebab-case format.
// ValidisKebabCase('kebab-case-example') // trueisKebabCase('hello-world') // true
// Valid with alphanumeric flagisKebabCase('with-1234', true) // trueisKebabCase('pi-3-14', true) // true
// InvalidisKebabCase('123at-start') // falseisKebabCase(' no-space-allowed') // falseisKebabCase('no-CAPS') // false
isCamelCase
Checks if a string is in camelCase format.
// ValidisCamelCase('camelCaseExample') // trueisCamelCase('helloWorld') // true
// InvalidisCamelCase('CAMEL') // falseisCamelCase(' noSpaceAllowed') // falseisCamelCase('withThe1234') // false
isPascalCase
Checks if a string is in PascalCase format.
// ValidisPascalCase('PascalCaseExample') // trueisPascalCase('HelloWorld') // true
// InvalidisPascalCase('PASCAL') // falseisPascalCase(' NoSpaceAllowed') // falseisPascalCase('WithThe1234') // false