1
0
mirror of https://gitea.com/actions/setup-node.git synced 2025-06-16 17:38:13 +08:00
setup-node/node_modules/deprecation/dist-src/index.js

14 lines
308 B
JavaScript
Raw Permalink Normal View History

2019-08-06 03:18:52 +08:00
export 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';
}
}