* Note: * * functions below are usually used together, but they're explicitly small to avoid them being too magical and hard to understand
(entity: AnyEntity)
| 138 | */ |
| 139 | |
| 140 | function getEntityChanges(entity: AnyEntity) { |
| 141 | return entityChanges.get(entity); |
| 142 | } |
| 143 | |
| 144 | function reapplyEntityChange(change: Change) { |
| 145 | const { entity } = change; |
no outgoing calls
no test coverage detected