File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,9 +79,7 @@ export function validateCryptoAvailable(
7979 * @param performanceClient {?IPerformanceClient}
8080 * @param correlationId {?string} correlation id
8181 */
82- export async function sha256Digest (
83- dataString : string
84- ) : Promise < ArrayBuffer > {
82+ export async function sha256Digest ( dataString : string ) : Promise < ArrayBuffer > {
8583 const encoder = new TextEncoder ( ) ;
8684 const data = encoder . encode ( dataString ) ;
8785 return window . crypto . subtle . digest (
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export class AuthorizationCodeClient extends BaseClient {
101101 this . cryptoUtils ,
102102 this . logger ,
103103 this . config . serializableCache ,
104- this . config . persistencePlugin ,
104+ this . config . persistencePlugin
105105 ) ;
106106
107107 // Validate response. This function throws a server error if an error is returned by the server.
You can’t perform that action at this time.
0 commit comments