UNPKG

pertain

Version:

Automated pub/sub across project dependencies. Run code from any installed package based on declarative rules in package.json

10 lines (9 loc) 269 B
/** * Throw this to visually indicate Pertain errors in stack traces with a tag. */ export default class PertainError extends Error { constructor(original: string | Error) { super(`[pertain] ${original}`); Error.captureStackTrace(this, PertainError); } }