@trenskow/caseit
A small library for changing the case of a string.
Usage
Import using the following example.
const caseit = require('@trenskow/caseit');
– or
import caseit from '@trenskow/caseit'
Converting
To convert from one case type to another use the following example.
const myCamelCase = caseit('my_camel_case', 'camel');
You can convert from any format to any other format. Supported formats are.
camel
- camelCasepascal
- PascalCasesnake
- snake_casedomain
- domain.casekebab
- kebab-casetitle
- Title Casehttp
- Http-Case
Default format (if omitted) is camel
(because it is the Javascript default).
Detecting
To detect the casing of a string do as the following example.
caseit.detect('MyCase');
caseit.detect('Hello');
Getting the words
You can also get the lowercase variants of all the words in a string by using the following example.
caseit.words('MyCase');
LICENSE
3-Clause BSD (see LICENSE).