/opt/canhelp/node_modules/next/dist/server/web
NameSizeModeActions
exports/-0755rm
sandbox/-0755rm
spec-extension/-0755rm
adapter.d.ts10210644editdlrm
adapter.js185740644editdlrm
adapter.js.map284060644editdlrm
edge-route-module-wrapper.d.ts13670644editdlrm
edge-route-module-wrapper.js51840644editdlrm
edge-route-module-wrapper.js.map85220644editdlrm
error.d.ts2640644editdlrm
error.js14230644editdlrm
error.js.map13960644editdlrm
get-edge-preview-props.d.ts3870644editdlrm
get-edge-preview-props.js8020644editdlrm
get-edge-preview-props.js.map10670644editdlrm
globals.d.ts4020644editdlrm
globals.js48300644editdlrm
globals.js.map61580644editdlrm
http.d.ts6740644editdlrm
http.js7950644editdlrm
http.js.map11240644editdlrm
internal-edge-wait-until.d.ts1560644editdlrm
internal-edge-wait-until.js21720644editdlrm
internal-edge-wait-until.js.map29320644editdlrm
next-url.d.ts17520644editdlrm
next-url.js74400644editdlrm
next-url.js.map132480644editdlrm
types.d.ts19410644editdlrm
types.js1150644editdlrm
types.js.map670644editdlrm
utils.d.ts12490644editdlrm
utils.js49140644editdlrm
utils.js.map83650644editdlrm
web-on-close.d.ts5420644editdlrm
web-on-close.js27850644editdlrm
web-on-close.js.map34060644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/server/web/utils.d.ts (1249B)
import type { OutgoingHttpHeaders } from 'http'; /** * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any * headers with multiple values will be joined with a comma and space. Any * headers that have an undefined value will be ignored and others will be * coerced to strings. * * @param nodeHeaders the headers object to convert * @returns the converted headers object */ export declare function fromNodeOutgoingHttpHeaders(nodeHeaders: OutgoingHttpHeaders): Headers; export declare function splitCookiesString(cookiesString: string): string[]; /** * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is * required to support the set-cookie header, which may have multiple values. * * @param headers the headers object to convert * @returns the converted headers object */ export declare function toNodeOutgoingHttpHeaders(headers: Headers): OutgoingHttpHeaders; /** * Validate the correctness of a user-provided URL. */ export declare function validateURL(url: string | URL): string; /** * Normalizes `nxtP` and `nxtI` query param values to remove the prefix. * This function does not mutate the input key. */ export declare function normalizeNextQueryParam(key: string): null | string;