Skip to content

Commit

Permalink
Merge pull request #143 from denghongcai/feat-add-URL-entries
Browse files Browse the repository at this point in the history
feat: 🎸 add URL entries
  • Loading branch information
L-jasmine authored Oct 15, 2024
2 parents 38aad42 + 741fc8e commit fc54552
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 fc54552

Please sign in to comment.