Skip to content

Commit

Permalink
Add pascalSnakeCase to README
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed Oct 3, 2023
1 parent 05ac652 commit f071814
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions packages/change-case/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,20 @@ npm install change-case --save

These case change functions are included:

| Method | Result |
| -------------- | ----------- |
| `camelCase` | `twoWords` |
| `capitalCase` | `Two Words` |
| `constantCase` | `TWO_WORDS` |
| `dotCase` | `two.words` |
| `trainCase` | `Two-Words` |
| `kebabCase` | `two-words` |
| `noCase` | `two words` |
| `pascalCase` | `TwoWords` |
| `pathCase` | `two/words` |
| `sentenceCase` | `Two words` |
| `snakeCase` | `two_words` |
| Method | Result |
| ----------------- | ----------- |
| `camelCase` | `twoWords` |
| `capitalCase` | `Two Words` |
| `constantCase` | `TWO_WORDS` |
| `dotCase` | `two.words` |
| `kebabCase` | `two-words` |
| `noCase` | `two words` |
| `pascalCase` | `TwoWords` |
| `pascalSnakeCase` | `Two_Words` |
| `pathCase` | `two/words` |
| `sentenceCase` | `Two words` |
| `snakeCase` | `two_words` |
| `trainCase` | `Two-Words` |

All core methods accept [`options`](#options) as the second argument.

Expand Down

0 comments on commit f071814

Please sign in to comment.