Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

View file

@ -0,0 +1,13 @@
export declare const URL: unknown;
export declare const URLSearchParams: unknown;
export declare const parseURL: unknown;
export declare const basicURLParse: unknown;
export declare const serializeURL: unknown;
export declare const serializeHost: unknown;
export declare const serializeInteger: unknown;
export declare const serializeURLOrigin: unknown;
export declare const setTheUsername: unknown;
export declare const setThePassword: unknown;
export declare const cannotHaveAUsernamePasswordPort: unknown;
export declare const percentDecodeBytes: unknown;
export declare const percentDecodeString: unknown;

View file

@ -0,0 +1,15 @@
// https://www.npmjs.com/package/whatwg-url
import { notImplemented } from "../../_internal/utils.mjs";
export const URL = globalThis.URL;
export const URLSearchParams = globalThis.URLSearchParams;
export const parseURL = /* @__PURE__ */ notImplemented("whatwg-url.parseURL");
export const basicURLParse = /* @__PURE__ */ notImplemented("whatwg-url.basicURLParse");
export const serializeURL = /* @__PURE__ */ notImplemented("whatwg-url.serializeURL");
export const serializeHost = /* @__PURE__ */ notImplemented("whatwg-url.serializeHost");
export const serializeInteger = /* @__PURE__ */ notImplemented("whatwg-url.serializeInteger");
export const serializeURLOrigin = /* @__PURE__ */ notImplemented("whatwg-url.serializeURLOrigin");
export const setTheUsername = /* @__PURE__ */ notImplemented("whatwg-url.setTheUsername");
export const setThePassword = /* @__PURE__ */ notImplemented("whatwg-url.setThePassword");
export const cannotHaveAUsernamePasswordPort = /* @__PURE__ */ notImplemented("whatwg-url.cannotHaveAUsernamePasswordPort");
export const percentDecodeBytes = /* @__PURE__ */ notImplemented("whatwg-url.percentDecodeBytes");
export const percentDecodeString = /* @__PURE__ */ notImplemented("whatwg-url.percentDecodeString");

View file

@ -0,0 +1,2 @@
export declare const URL: unknown;
export declare const URLSearchParams: unknown;

View file

@ -0,0 +1,2 @@
export const URL = globalThis.URL;
export const URLSearchParams = globalThis.URLSearchParams;