Skip to content

Instantly share code, notes, and snippets.

@leegilmorecode
Created October 4, 2021 10:10
Show Gist options
  • Save leegilmorecode/c047eab87291644fcfebb2e76b93e856 to your computer and use it in GitHub Desktop.
Save leegilmorecode/c047eab87291644fcfebb2e76b93e856 to your computer and use it in GitHub Desktop.
export const randomErrors = (): void | Error => {
if (Math.random() > 0.9) {
throw new Error('spurious error');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment