![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@workablehr/object-transformator
Advanced tools
Transforms a javascript object from one shape to another.
objectTransformator
comes with some preset transformations.
Using npm:
\$ npm install @workablehr/object-transformator
import { underscoredKeys } from "@workablehr/object-transformator";
underscoredKeys({ attrV1: "val1", attrs: { attrV2: "val2" } });
// {attr_v1: 'val1', attrs: {attr_v2: 'val2'}}
Transforms all the object keys to camel case.
import { camelizeKeys } from "@workablehr/object-transformator";
camelizeKeys({ attr_v1: "val1", attrs: { attr_v2: "val2" } });
// { attrV1: "val1", attrs: { attrV2: "val2" } }
Transforms all the object keys to underscored case.
import { underscoredKeys } from "@workablehr/object-transformator";
underscoredKeys(
{ attrV1: "val1", attrs: { attrV2: "val2" } },
{ shallow: true }
);
// {attr_v1: 'val1', attrs: {attrV2: 'val2'}}
The pure transformator function.
import transformKeys from "@workablehr/object-transformator";
const prefixKeys = (data, prefix, { shallow = false, omit = [] } = {}) =>
transformKeys(data, {
shallow,
func: prefixKeys,
action: (target, key, value) => ({ ...target, [prefix + key]: value }),
omit
});
prefixKeys({ attr1: "val1", attrs: { attr2: "val2" } }, "v1_");
// {{ v1_attr1: "val1", v1_attrs: { v1_attr2: "val2" } }}
Creates a chain of transformators.
import transformKeys, {compose} from "@workablehr/object-transformator";
const prefixAction = (target, key, value) => ({ ...target, ['v1_' + key]: value })
const payloadTransformator = data =>
transformKeys(data, {
func: payloadTransformator,
action: compose(
camelizeKey,
prefixAction
)
});
payloadTransformator({...});
FAQs
Request
We found that @workablehr/object-transformator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.