UNPKG

steam-family-bot-core

Version:

一个用于新版 Steam 家庭的库存监控 Bot 插件

21 lines 614 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tokenNeedRefresh = exports.jwtDecode = void 0; const jwt_decode_1 = require("jwt-decode"); const lodash_1 = require("lodash"); function jwtDecode(token) { return (0, jwt_decode_1.jwtDecode)(token); } exports.jwtDecode = jwtDecode; function tokenNeedRefresh(token) { try { const res = jwtDecode(token); const nt = (0, lodash_1.now)(); return (res.exp - 900) * 1000 < nt; } catch (e) { return true; } } exports.tokenNeedRefresh = tokenNeedRefresh; //# sourceMappingURL=jwt.js.map