Actions
Feature #27642
closedAdd helpers for deep props keys transformations
Description
We currently have propsToSnakeCase and propsToCamelCase helpers to transform object keys, however these cannot handle nested objects. It would be useful if we had helpers that would transform keys for nested objects as well.
console.log(deepPropsToSnakeCase({ myTest: { notHere: 'foo' } })); // { my_test: { not_here: 'foo' } }
Actions