fix. 개발 도구 적용. (typescript, prettier, es-lint)
This commit is contained in:
@@ -3,13 +3,13 @@ export const csrDecodedJWT = (base64EncodeVal: string) => {
|
||||
decodeURIComponent(
|
||||
window
|
||||
.atob(base64EncodeVal)
|
||||
.split("")
|
||||
.split('')
|
||||
.map(function (c) {
|
||||
return "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2);
|
||||
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)
|
||||
})
|
||||
.join("")
|
||||
.join('')
|
||||
)
|
||||
);
|
||||
)
|
||||
|
||||
return decodeVal;
|
||||
};
|
||||
return decodeVal
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user