https://github.com/alichraghi/jigar
Case convertion library for ziguanas
https://github.com/alichraghi/jigar
case-conversion zig zig-package
Last synced: 3 months ago
JSON representation
Case convertion library for ziguanas
- Host: GitHub
- URL: https://github.com/alichraghi/jigar
- Owner: alichraghi
- License: mit
- Created: 2022-08-04T17:30:46.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-17T09:39:35.000Z (about 3 years ago)
- Last Synced: 2025-06-29T14:02:49.941Z (3 months ago)
- Topics: case-conversion, zig, zig-package
- Language: Zig
- Homepage:
- Size: 48.8 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jigar
case convertion library for ziguanas
supports: `lower case`, `UPPER CASE`, `MACRO_CASE`, `TRAIN-CASE`, `snake_case`, `snake_Camel`, `Snake_Pascal`, `kebab-case`, `Kebab-Pascal`, `camelCase` and `PascalCase`
### Usage
```zig
const jigar = @import("jigar");pub fn main() void {
var my_hello = "Hello World".*;
jigar.snakeCase(&my_hello); // results: hello_world
}
```