Files
release-action/node_modules/deprecation/dist-node/index.js
Nick Cipollo 4f02b8b744
Some checks failed
Test / check_pr (push) Has been cancelled
Prepare version 1.8.3
2021-04-07 17:41:49 -04:00

21 lines
417 B
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
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';
}
}
exports.Deprecation = Deprecation;