Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into add-req-res-data-warn
  • Loading branch information
jimmywarting authored Dec 19, 2021
commit 463792f04cc48c4a43507bd0530cba720bff749c
6 changes: 4 additions & 2 deletions src/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
* All spec algorithm step numbers are based on https://fetch.spec.whatwg.org/commit-snapshots/ae716822cb3a61843226cd090eefc6589446c1d2/.
*/

import {format as formatUrl} from 'node:url';
import {deprecate, format as formatUrl} from 'node:url';
import Headers from './headers.js';
import Body, {clone, extractContentType, getTotalBytes} from './body.js';
import {isAbortSignal} from './utils/is.js';
import {getSearch} from './utils/get-search.js';
import {deprecate} from 'util';
import {
validateReferrerPolicy, determineRequestsReferrer, DEFAULT_REFERRER_POLICY
} from './utils/referrer.js';

const INTERNALS = Symbol('Request internals');

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.