(data, op)
| 63 | // return deserialized data when passed deserialized data or serialized data |
| 64 | // when passed serialized data |
| 65 | function apply(data, op) { |
| 66 | return (data instanceof Node) ? |
| 67 | deserializedApply(data, op) : |
| 68 | serializedApply(data, op); |
| 69 | } |
| 70 | |
| 71 | // Deserialized apply is used in the client for all client submitted and |
| 72 | // incoming ops. It should apply with the snapshot in the deserialized format |
nothing calls this directly
no test coverage detected
searching dependent graphs…