/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/server/web
NameSizeModeActions
exports/-0777rm
sandbox/-0777rm
spec-extension/-0777rm
adapter.d.ts10210666editdlrm
adapter.js186610666editdlrm
adapter.js.map285200666editdlrm
edge-route-module-wrapper.d.ts13670666editdlrm
edge-route-module-wrapper.js51840666editdlrm
edge-route-module-wrapper.js.map85220666editdlrm
error.d.ts2640666editdlrm
error.js14230666editdlrm
error.js.map13960666editdlrm
get-edge-preview-props.d.ts3870666editdlrm
get-edge-preview-props.js8020666editdlrm
get-edge-preview-props.js.map10670666editdlrm
globals.d.ts4020666editdlrm
globals.js48300666editdlrm
globals.js.map61580666editdlrm
http.d.ts6740666editdlrm
http.js7950666editdlrm
http.js.map11240666editdlrm
internal-edge-wait-until.d.ts1560666editdlrm
internal-edge-wait-until.js21720666editdlrm
internal-edge-wait-until.js.map29320666editdlrm
next-url.d.ts17520666editdlrm
next-url.js74400666editdlrm
next-url.js.map132480666editdlrm
types.d.ts19410666editdlrm
types.js1150666editdlrm
types.js.map670666editdlrm
utils.d.ts12490666editdlrm
utils.js49140666editdlrm
utils.js.map83650666editdlrm
web-on-close.d.ts5420666editdlrm
web-on-close.js27850666editdlrm
web-on-close.js.map34060666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/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;