Skip to content

Commit

Permalink
Make errors.js’s export tree-shakable
Browse files Browse the repository at this point in the history
Motivation as in 9d8aeb8.
  • Loading branch information
lawrence-forooghian committed Nov 24, 2023
1 parent 63584ed commit 9a0cd73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ function CustomErrors(names) {
return errors;
}

export default CustomErrors(['NotImplemented', 'InvalidDelta']);
export default /* @__PURE__ */ CustomErrors(['NotImplemented', 'InvalidDelta']);

0 comments on commit 9a0cd73

Please sign in to comment.