(u: unknown)
| 128 | : typeof u === "object" && u !== null && "code" in u && u.code === code |
| 129 | |
| 130 | const isOptimisticError = (u: unknown) => isCosmosStatus(u, 409) || isCosmosStatus(u, 412) || isCosmosStatus(u, 404) |
| 131 | |
| 132 | // --- Storage codecs ---------------------------------------------------------- |
| 133 | // Values flowing through the engine's activity / deferred boundary are already |
no test coverage detected
searching dependent graphs…