We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my use case, I am dealing with two array that I need to combine into one single array according to some conditional logics:
let input = { required: [ "name" ], properties: [ { id: "name" } ] }
let expected = { properties: [ { id: "name", required: true } ] }
How can I implement mapping logics that allow me to compare the two arrays, required vs properties?
THanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In my use case, I am dealing with two array that I need to combine into one single array according to some conditional logics:
let input = {
required: [ "name" ],
properties: [
{
id: "name"
}
]
}
let expected = {
properties: [
{
id: "name",
required: true
}
]
}
How can I implement mapping logics that allow me to compare the two arrays, required vs properties?
THanks!
The text was updated successfully, but these errors were encountered: