Removes a token value from memory storage
Deletes a specific token value from the memory storage. If the key doesn't exist, this operation has no effect.
Token key to remove
// Remove the access token onlyremoveTokenValue(ACCESS_TOKEN_KEY); Copy
// Remove the access token onlyremoveTokenValue(ACCESS_TOKEN_KEY);
Use clearTokens from token-operations instead
export function removeTokenValue(key: string): void { delete memoryTokenStorage[key];} Copy
export function removeTokenValue(key: string): void { delete memoryTokenStorage[key];}
Removes a token value from memory storage
Deletes a specific token value from the memory storage. If the key doesn't exist, this operation has no effect.