(self: HttpServerRequest, options?: {
readonly signal?: AbortSignal | undefined
})
| 271 | * @category conversions |
| 272 | */ |
| 273 | export const toWeb = (self: HttpServerRequest, options?: { |
| 274 | readonly signal?: AbortSignal | undefined |
| 275 | }): Effect.Effect<Request, Error.RequestError> => |
| 276 | Effect.flatMap(Effect.runtime<never>(), (runtime) => |
| 277 | toWebEither(self, { |
| 278 | signal: options?.signal, |
| 279 | runtime |
| 280 | })) |
| 281 | |
| 282 | /** |
| 283 | * @since 1.0.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…