Template
1
0
mirror of https://github.com/actions/setup-node synced 2024-12-02 21:42:29 +08:00
setup-node/node_modules/deprecation/dist-web/index.js

17 lines
327 B
JavaScript
Raw Normal View History

2019-08-07 06:29:44 +08:00
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 };