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
It's not clear without testing that this doesn't modify the input.
Documenting this explicitly could boost adoption among people looking for a library compatible with immutable data structures. Maybe a description similar to https://immerjs.github.io/immer/#immer-simplifies-handling-immutable-data-structures
No response
const a = { a: 'value' } const b = { b: 404 } const result = deepMerge()(a, b); console.log(result); // {a: 'value', b: 404 } console.log(a); // {a: 'value'} console.log(b); // {b: 404} console.log(a === result); // false console.log(b === result); // false
The text was updated successfully, but these errors were encountered:
If you like you can provide a PR.
Sorry, something went wrong.
No branches or pull requests
Prerequisites
🚀 Feature Proposal
It's not clear without testing that this doesn't modify the input.
Documenting this explicitly could boost adoption among people looking for a library compatible with immutable data structures. Maybe a description similar to https://immerjs.github.io/immer/#immer-simplifies-handling-immutable-data-structures
Motivation
No response
Example
The text was updated successfully, but these errors were encountered: