Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const METHOD_WITHOUT_BODY = ['get', 'delete'] as const;
const METHOD_WITH_BODY = ['patch', 'put', 'post'] as const;
const REQUEST_INIT_KEYS = [
'cache',
'credentials',
'headers',
'integrity',
'keepalive',
'method',
'mode',
'referrer',
'redirect',
'referrerPolicy',
'signal',
] as const;
const RESPONSE_BODY_UNDEFINED_MESSAGE = 'Unexpected end of JSON input';
export {
METHOD_WITHOUT_BODY,
METHOD_WITH_BODY,
REQUEST_INIT_KEYS,
RESPONSE_BODY_UNDEFINED_MESSAGE,
};
|