()
| 224 | }, onIgnoredError); |
| 225 | |
| 226 | const getPersisted = async (): Promise<MergeableContent | undefined> => { |
| 227 | const changes = (await getChangesFromOtherStore()) as any; |
| 228 | return changes && (!objIsEmpty(changes[0][0]) || !objIsEmpty(changes[1][0])) |
| 229 | ? changes |
| 230 | : undefined; |
| 231 | }; |
| 232 | |
| 233 | const setPersisted = async ( |
| 234 | _getContent: () => MergeableContent, |
nothing calls this directly
no test coverage detected
searching dependent graphs…