humps 1.0.2
humps: ^1.0.2 copied to clipboard
A Dart package for converting map keys between camelCase and snake_case. Useful for converting between JSON and Dart field names.
1.0.2 #
- adding the
decamelizemethod onStringclass to convert a camelCase string to snake_case or kebab-case - adding the
decamelizeKeysmethod onMapclass to convert the keys of a map from camelCase to snake_case or kebab-case - adding the
camelizemethod onStringclass to convert a snake_case or kebab-case string to camelCase - adding the
camelizeKeysmethod onMapclass to convert the keys of a map from snake_case or kebab-case to camelCase - adding the
pascalizemethod onStringclass to convert a snake_case or kebab-case string to PascalCase - adding the
pascalizeKeysmethod onMapclass to convert the keys of a map from snake_case or kebab-case to PascalCase - adding the
depascalizemethod onStringclass to convert a PascalCase string to snake_case or kebab-case - adding the
depascalizeKeysmethod onMapclass to convert the keys of a map from PascalCase to snake_case or kebab-case
1.0.1 #
- Updating the docs
1.0.0 #
- Initial version.