mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
chore(deps): removed ts-pattern (#565)
* fix(deps): update dependency ts-pattern to v5 * chore(deps): removed ts-pattern --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
This commit is contained in:
parent
2bcb77a9f9
commit
0f1f6590c5
3 changed files with 9 additions and 13 deletions
|
@ -1,6 +1,5 @@
|
|||
import jwtDecode, { type JwtHeader, type JwtPayload } from 'jwt-decode';
|
||||
import _ from 'lodash';
|
||||
import { match } from 'ts-pattern';
|
||||
import { ALGORITHM_DESCRIPTIONS, CLAIM_DESCRIPTIONS } from './jwt-parser.constants';
|
||||
|
||||
export { decodeJwt };
|
||||
|
@ -32,10 +31,15 @@ function parseClaims({ claim, value }: { claim: string; value: unknown }) {
|
|||
}
|
||||
|
||||
function getFriendlyValue({ claim, value }: { claim: string; value: unknown }) {
|
||||
return match(claim)
|
||||
.with('exp', 'nbf', 'iat', () => dateFormatter(value))
|
||||
.with('alg', () => (_.isString(value) ? ALGORITHM_DESCRIPTIONS[value] : undefined))
|
||||
.otherwise(() => undefined);
|
||||
if (['exp', 'nbf', 'iat'].includes(claim)) {
|
||||
return dateFormatter(value);
|
||||
}
|
||||
|
||||
if (claim === 'alg' && _.isString(value)) {
|
||||
return ALGORITHM_DESCRIPTIONS[value];
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
||||
|
||||
function dateFormatter(value: unknown) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue