node-object-mapper icon indicating copy to clipboard operation
node-object-mapper copied to clipboard

Copy properties from one object to another.

Results 43 node-object-mapper issues
Sort by recently updated
recently updated
newest added

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Hi, I am trying to map fields from different fields to fields of objects in an array into the destination object. Following is my example: ``` { "firstName": "S", "lastName":...

Apologies if there's an obvious answer to this. I think I've tried to do it every possible way except for the correct way. If I have the following source object:...

I am using object-mapper to transform a JSON object to a different JSON format. The following works... but only produces the first entry in the JSON I have. Is there...

When the actual destination key contains `.` there is no way to actually set it. ### Expected Escaping `.` would result in setting the destination key as a literal. ###...

Hello. Need more examples. ```json "results": [{ "books": [{ "part": 1, "chapters": [ { "chapter": 1 }, { "chapter": 2 }, { "chapter": 3 } ] }] }] ``` how...

Is it possible to map this: [ { condition: 'new', quantity: 5, id: 'x' }, { condition: 'used', quantity: 3, id: 'y' }, { condition: 'broken', quantity: 1, id: 'z'...