Files
release-action/node_modules/deprecation/dist-node/index.js
Nick Cipollo 95215a3cb6
Some checks failed
Test / check_pr (push) Has been cancelled
Prepate 1.8.5 release
2021-05-12 11:44:59 -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;