frontend/.pnpm-store/v3/files/ab/4181bc519a0f46c4540e2940cd7a165e1d001101a80d94036e46fb575ed24c562dfe994db8312da7520d63ef17b3cd6b292ce71b30c3d6751ac5f3dbe86fd5

21 lines
417 B
Plaintext

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