Sha256: 50e734bfe5a77b499cea0b7eccd7e41e140784aeb879f74f6ce7489fc1902480
Contents?: true
Size: 703 Bytes
Versions: 26
Compression:
Stored size: 703 Bytes
Contents
import type { ServiceWorkerIncomingRequest } from '../setupWorker/glossary' type Input = Pick<ServiceWorkerIncomingRequest, 'method' | 'body'> /** * Ensures that an empty GET request body is always represented as `undefined`. */ export function pruneGetRequestBody( request: Input, ): ServiceWorkerIncomingRequest['body'] { // Force HEAD/GET request body to always be empty. // The worker reads any request's body as ArrayBuffer, // and you cannot re-construct a GET/HEAD Request // with an ArrayBuffer, even if empty. Also note that // "request.body" is always undefined in the worker. if (['HEAD', 'GET'].includes(request.method)) { return undefined } return request.body }
Version data entries
26 entries across 26 versions & 1 rubygems