This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/change-case-all/README.md

49 lines
1.1 KiB
Markdown
Raw Normal View History

2021-03-09 18:44:13 +00:00
# change-case-all
[![npm](https://img.shields.io/npm/v/change-case-all.svg)](https://www.npmjs.com/package/change-case-all)
[![npm](https://img.shields.io/npm/dm/change-case-all.svg)](https://www.npmjs.com/package/change-case-all)
Combined version of all [`change-case`](https://github.com/blakeembrey/change-case) methods, so you do not need to install them separately.
Tree shaking should still work if you use a module bundler.
## Usage
```shell script
npm install --save change-case-all
```
```ts
import { camelCase, upperCase, ... } from 'change-case-all';
```
## Documentation
https://github.com/blakeembrey/change-case
## Links
- **Original project:** https://github.com/blakeembrey/change-case
- **Bundled browser friendly version:** https://github.com/nitro404/change-case-bundled
## Methods
**Core**
- camelCase
- capitalCase
- constantCase
- dotCase
- headerCase
- noCase
- paramCase
- pascalCase
- pathCase
- sentenceCase
- snakeCase
**Extended**
- lowerCase
- localeLowerCase
- lowerCaseFirst
- spongeCase
- swapCase
- titleCase
- upperCase
- localeUpperCase
- upperCaseFirst
- isUpperCase
- isLowerCase