File tree 2 files changed +2
-4
lines changed 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -79,9 +79,7 @@ export function validateCryptoAvailable(
79
79
* @param performanceClient {?IPerformanceClient}
80
80
* @param correlationId {?string} correlation id
81
81
*/
82
- export async function sha256Digest (
83
- dataString : string
84
- ) : Promise < ArrayBuffer > {
82
+ export async function sha256Digest ( dataString : string ) : Promise < ArrayBuffer > {
85
83
const encoder = new TextEncoder ( ) ;
86
84
const data = encoder . encode ( dataString ) ;
87
85
return window . crypto . subtle . digest (
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export class AuthorizationCodeClient extends BaseClient {
101
101
this . cryptoUtils ,
102
102
this . logger ,
103
103
this . config . serializableCache ,
104
- this . config . persistencePlugin ,
104
+ this . config . persistencePlugin
105
105
) ;
106
106
107
107
// 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