Template
1
0
mirror of https://github.com/actions/setup-node synced 2024-12-03 21:52:28 +08:00
setup-node/node_modules/deprecation/dist-web/index.js
2019-08-05 15:18:52 -04:00

17 lines
327 B
JavaScript

class Deprecation extends Error {
constructor(message) {
super(message); // Maintains proper stack trace (only available on V8)
/* istanbul ignore next */
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
this.name = 'Deprecation';
}
}
export { Deprecation };