(prev, next)
| 113 | const isProperty = key => key !== "children" && !isEvent(key) |
| 114 | const isNew = (prev, next) => key => prev[key] !== next[key] |
| 115 | const isGone = (prev, next) => key => !(key in next) |
| 116 | |
| 117 | function updateDom(dom, prevProps, nextProps) { |
| 118 | //Remove old or changed event listeners |