mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-22 12:29:50 -04:00
13 lines
191 B
JavaScript
13 lines
191 B
JavaScript
function packageExists(packageName) {
|
|
try {
|
|
require(packageName);
|
|
return true;
|
|
} catch (err) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
packageExists,
|
|
};
|