Skip to content

Commit

Permalink
update error type, message
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Dec 23, 2023
1 parent e0a9a10 commit 424a064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function getType(item: any): string {
return 'undefined';

default:
new Error(`Type ${type} cannot be stringified`);
new Error(`Type '${type}' cannot be stringified`);
}
}

Expand Down

0 comments on commit 424a064

Please sign in to comment.