feat. 환경 세팅
This commit is contained in:
15
layers/utils/jwtUtil.ts
Normal file
15
layers/utils/jwtUtil.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export const csrDecodedJWT = (base64EncodeVal: string) => {
|
||||
const decodeVal = JSON.parse(
|
||||
decodeURIComponent(
|
||||
window
|
||||
.atob(base64EncodeVal)
|
||||
.split("")
|
||||
.map(function (c) {
|
||||
return "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2);
|
||||
})
|
||||
.join("")
|
||||
)
|
||||
);
|
||||
|
||||
return decodeVal;
|
||||
};
|
||||
Reference in New Issue
Block a user