Closed jcrist closed 11 months ago
Previously leading underscores were stripped when renaming fields to a camelCase or PascalCase convention. We now preserve leading underscores, better matching the behavior and conventions of other libraries.
camelCase
PascalCase
Before: _field_one -> fieldOne Now: _field_one -> _fieldOne
_field_one
fieldOne
_fieldOne
Fixes #618.
Previously leading underscores were stripped when renaming fields to a
camelCase
orPascalCase
convention. We now preserve leading underscores, better matching the behavior and conventions of other libraries.Before:
_field_one
->fieldOne
Now:_field_one
->_fieldOne
Fixes #618.