(prev, next)
| 112 | const isEvent = key => key.startsWith("on") |
| 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) { |