Skip to content

Instantly share code, notes, and snippets.

@exuanbo
Created November 28, 2020 12:34
Show Gist options
  • Save exuanbo/41a4a6206efcb22c1becb8b0aa3e050b to your computer and use it in GitHub Desktop.
Save exuanbo/41a4a6206efcb22c1becb8b0aa3e050b to your computer and use it in GitHub Desktop.
export const isModuleAvailable = (path: string): boolean => {
try {
require.resolve(path)
return true
} catch {
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment