(method: HttpMethod)
| 55 | * @since 4.0.0 |
| 56 | */ |
| 57 | export const hasBody = (method: HttpMethod): method is HttpMethod.WithBody => |
| 58 | method !== "GET" && method !== "HEAD" && method !== "OPTIONS" && method !== "TRACE" |
| 59 | |
| 60 | /** |
| 61 | * Provides a readonly set containing every supported `HttpMethod` literal. |
no outgoing calls
no test coverage detected