
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
object-mapper-util
Advanced tools
The `object-mapper-util` library provides a simple function to map objects based on user-defined configurations.
The object-mapper-util library provides a simple function to map objects based on user-defined configurations.
To install the library in your project, you can use npm. Run the following command in the terminal:
npm install object-mapper-util
Here is a basic example of how to use the library:
import { objectMapperUtil, IObjectMapperUtilRefs } from 'object-mapper-util';
const inputObject = {
prop1: 42,
prop2: 'Hello',
prop3: 'Not changed value from input object',
prop4: {
prop1: {
prop: "Value"
}
},
prop5: [
{
propElement0: 'element[0]'
}
]
};
const PROPERTIES_REFS: IObjectMapperUtilRefs[] = [
{ outputProp: 'property1', valueProcessor: (value) => value * 2, inputProp: 'prop1' },
{ outputProp: 'property2', defaultValue: 'Default' },
{ outputProp: 'property3', inputProp: 'prop3' },
{ outputProp: 'property4', inputProp: 'prop4.prop1.prop' },
{ outputProp: 'property5', inputProp: 'prop5[0].propElement0' }
];
const mappedObject = objectMapperUtil(inputObject, PROPERTIES_REFS);
console.log(mappedObject);
/*
output:
{
property1: 84,
property2: 'Default',
property3: 'Not changed value from input object',
property4: 'Value',
property5: 'element[0]'
}
/*
This project is licensed under the MIT License - see the LICENSE file for details.
I hope the library proves useful in your projects! If you have any questions or issues, feel free to reach out.
FAQs
The `object-mapper-util` library provides a simple function to map objects based on user-defined configurations.
The npm package object-mapper-util receives a total of 9 weekly downloads. As such, object-mapper-util popularity was classified as not popular.
We found that object-mapper-util demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.