(authorization: string)
| 1094 | } |
| 1095 | |
| 1096 | export function tokenSplit(authorization: string): string[] { |
| 1097 | return authorization.replace("Bearer ", "").split(","); |
| 1098 | } |
| 1099 | |
| 1100 | export async function getTokenLiveStatus(refreshToken: string) { |
| 1101 | const sign = await generateSign(); |
nothing calls this directly
no outgoing calls
no test coverage detected