UNPKG

npm-utilities

Version:

The most complete, powerful and flexible npm module to retrieve package, user and status data from npmjs.com programmatically with the power of web scraping!

13 lines (10 loc) 202 B
/** * Means supplying a wrong/invalid package name @extends {Error} */ class InvalidPackage extends Error { constructor(msg) { super(msg); } } module.exports = InvalidPackage;