Skip to content

Commit

Permalink
remove unneeded message-formatter change
Browse files Browse the repository at this point in the history
  • Loading branch information
mcintyre94 committed Mar 1, 2024
1 parent 00a62af commit 4695dd0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/errors/src/message-formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ function encodeValue(value: unknown): string {
);
} else if (typeof value === 'bigint') {
return `${value}n`;
} else if (value === null) {
return 'null';
} else if (value === undefined) {
return 'undefined';
} else {
return encodeURIComponent(
String(
Expand Down

0 comments on commit 4695dd0

Please sign in to comment.