(method: HttpMethod)
| 33 | * @since 1.0.0 |
| 34 | */ |
| 35 | export const hasBody = (method: HttpMethod): boolean => method !== "GET" && method !== "HEAD" && method !== "OPTIONS" |
| 36 | |
| 37 | /** |
| 38 | * @since 1.0.0 |
no outgoing calls
no test coverage detected
searching dependent graphs…