https://github.com/freeshineit/skax-camel
util lower camel and upper camel
https://github.com/freeshineit/skax-camel
utils
Last synced: 6 months ago
JSON representation
util lower camel and upper camel
- Host: GitHub
- URL: https://github.com/freeshineit/skax-camel
- Owner: freeshineit
- License: mit
- Created: 2023-03-14T15:39:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T16:58:26.000Z (over 1 year ago)
- Last Synced: 2025-03-31T03:32:33.139Z (6 months ago)
- Topics: utils
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@skax/camel
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## @skax/camel



A set of utility functions commonly.
### example
```ts
import {lowerCamel, upperCamel} from '@skax/camel'lowerCamel("abcce_dddd_ffff") // -> abcceDdddFfff
lowerCamel("abcce-dddd-ffff", '-') // -> abcceDdddFfff
upperCamel("abcce_dddd_ffff") // -> AbcceDdddFfff
upperCamel("abcce-dddd-ffff", '-') // -> AbcceDdddFfff
```