( requestBatching: boolean )
| 1018 | * @category requests & batching |
| 1019 | */ |
| 1020 | export const setRequestBatching: (requestBatching: boolean) => Layer<never> = ( |
| 1021 | requestBatching: boolean |
| 1022 | ) => |
| 1023 | scopedDiscard( |
| 1024 | fiberRuntime.fiberRefLocallyScoped(core.currentRequestBatching, requestBatching) |
| 1025 | ) |
| 1026 | |
| 1027 | /** |
| 1028 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected