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
Support merge generators
No response
const values1 = function * () { yield * [0, 1, 2, 3, 4] } const values2 = function * () { yield * [5, 6, 7, 8, 9] } deepmerge(values1, value2) // generator like 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 <- ordered
const values1 = async function * () { yield * [0, 1, 2, 3, 4] } const values2 = async function * () { yield * [5, 6, 7, 8, 9] } deepmerge(values1, value2) // async generator like 0, 1, 5, 2, 6, 7, 3, 4, 8, 9 <- no order
The text was updated successfully, but these errors were encountered:
I think this should be a separate function than the main deepmerge.
Overall, I think this might be better implemented as a new utility module.
Sorry, something went wrong.
No branches or pull requests
Prerequisites
🚀 Feature Proposal
Support merge generators
Motivation
No response
Example
The text was updated successfully, but these errors were encountered: