<!-- **Please read this entire template before posting any issue. If you ignore these instructions and post an issue here that does not follow the instructions, your issue might be closed, locked, and assigned the `missing discussion` label.** --> ## 🚀 Feature Proposal Compare and return true or false if two vnode structures are equal ## Motivation To be able to compare structures ## Example ```typescript let a = ( <container> <inner /> </container> ) function *A() { yield <container /> yield <container><inner loading={true} /></container> yield <container><inner /></container> } ``` ```typescript if (await equal(a, <A />)) { // ??? } ```
🚀 Feature Proposal
Compare and return true or false if two vnode structures are equal
Motivation
To be able to compare structures
Example