UNPKG

177 BJavaScriptView Raw
1const moduleExists = (name) => {
2 try {
3 return require.resolve(name)
4 } catch (e) /* istanbul ignore next */ {
5 return false
6 }
7}
8
9module.exports = {
10 moduleExists
11}