(tree1, tree2, invertible)
| 169 | * Create an array of patches from the differences in two objects |
| 170 | */ |
| 171 | export function compare(tree1, tree2, invertible) { |
| 172 | if (invertible === void 0) { invertible = false; } |
| 173 | var patches = []; |
| 174 | _generate(tree1, tree2, patches, '', invertible); |
| 175 | return patches; |
| 176 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…