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) 186 B
/** * Monitor failed to retrieve status @extends {Error} */ class MonitorError extends Error { constructor (msg) { super(msg) } } module.exports = MonitorError