Skip to content

v3.0.1

Compare
Choose a tag to compare
@akiver akiver released this 08 Mar 23:05
· 8 commits to main since this release
  • Fix comparing provided errors with instanceof not working, i.e:
try {
  decodeMatchShareCode("invalid-share-code");
} catch (error) {
  if (error instanceof InvalidShareCode) {
    // now works
  }
}