(u: unknown)
| 84 | |
| 85 | /** @internal */ |
| 86 | export const isServerResponse = (u: unknown): u is ServerResponse.HttpServerResponse => |
| 87 | typeof u === "object" && u !== null && TypeId in u |
| 88 | |
| 89 | /** @internal */ |
| 90 | export const empty = (options?: ServerResponse.Options.WithContent | undefined): ServerResponse.HttpServerResponse => |
no outgoing calls
no test coverage detected
searching dependent graphs…