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';
}
}