/
333
/
hotel_paradise
Обзор
Документация
Войти
/
333
/
hotel_paradise
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/jsonwebtoken/lib/JsonWebTokenError.js
14 строк
428 B
KLimPropizdon
first commit
03 дек 2025, 04:52
03 дек 2025, 04:52
dda0552
Код
Авторство
О чём код?
var JsonWebTokenError = function (message, error) { Error.call(this, message); if(Error.captureStackTrace) { Error.captureStackTrace(this, this.constructor); } this.name = 'JsonWebTokenError'; this.message = message; if (error) this.inner = error; }; JsonWebTokenError.prototype = Object.create(Error.prototype); JsonWebTokenError.prototype.constructor = JsonWebTokenError; module.exports = JsonWebTokenError;