Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uasi/casey
Casey converts strings to whatever case.
https://github.com/uasi/casey
Last synced: about 7 hours ago
JSON representation
Casey converts strings to whatever case.
- Host: GitHub
- URL: https://github.com/uasi/casey
- Owner: uasi
- License: mit
- Created: 2015-05-17T16:20:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-17T16:43:53.000Z (over 9 years ago)
- Last Synced: 2023-04-14T01:30:57.318Z (over 1 year ago)
- Language: Rust
- Size: 133 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Casey
Casey converts strings to whatever case.
## Synopsis
```rust
extern crate casey;
use casey::Casey;fn main() {
println!("{}", "FooBARBaz".to_snakecase()); // => "foo_bar_baz"
println!("{}", "foo_bar_baz".to_camelcase()); // => "fooBarBaz"
}
```## License
Casey is released under the MIT license.
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request