()
| 742 | // https://heycam.github.io/webidl/#es-stringifier |
| 743 | // https://url.spec.whatwg.org/#urlsearchparams-stringification-behavior |
| 744 | toString() { |
| 745 | if (typeof this !== 'object' || this === null || !(#searchParams in this)) |
| 746 | throw new ERR_INVALID_THIS('URLSearchParams'); |
| 747 | |
| 748 | return serializeParams(this.#searchParams); |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | ObjectDefineProperties(URLSearchParams.prototype, { |
no test coverage detected