Skip to content

Commit

Permalink
feat: 🎸 add URL entries
Browse files Browse the repository at this point in the history
  • Loading branch information
denghongcai authored and hongcai.dhc committed Oct 15, 2024
1 parent 38aad42 commit 741fc8e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/whatwg_url.js
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,10 @@ var URLSearchParams$1 = /*@__PURE__*/(function () {
return this._list[Symbol.iterator]();
};

URLSearchParams.prototype.entries = function entries () {
return this._list[Symbol.iterator]();
};

URLSearchParams.prototype.toString = function toString () {
return urlencoded$1.serializeUrlencoded(this._list);
};
Expand Down

0 comments on commit 741fc8e

Please sign in to comment.