Skip to content

Commit

Permalink
chore(serialize): update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zsilbi committed Mar 2, 2025
1 parent f1c6fbd commit 909e8ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/serialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const Serializer = /*@__PURE__*/ (function () {
objType === "Object" &&
(objName === "URL" || objName === "Blob" || objName === "FormData")
) {
// workaround for workerd runtime
// workaround for browsers and workerd runtime
objType = objName;
}

Expand Down
2 changes: 1 addition & 1 deletion test/serialize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ describe("serialize", () => {
});
});

describe("workerd workarounds", () => {
describe("browser and workerd runtime workarounds", () => {
let originalToString: any;

beforeEach(() => {
Expand Down

0 comments on commit 909e8ff

Please sign in to comment.