Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Jun 6, 2024
1 parent ecfe638 commit e1a078c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webcrypto/subtle_crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,9 @@ func (sc *SubtleCrypto) Digest(algorithm sobek.Value, data sobek.Value) *sobek.P
// using `SubtleCrypto.ExportKey` or `SubtleCrypto.WrapKey`.
//
// The `keyUsages` parameter is an array of strings indicating what the key can be used for.
func (sc *SubtleCrypto) GenerateKey(algorithm sobek.Value, extractable bool, keyUsages []CryptoKeyUsage) *sobek.Promise {
func (sc *SubtleCrypto) GenerateKey(
algorithm sobek.Value, extractable bool, keyUsages []CryptoKeyUsage,
) *sobek.Promise {
rt := sc.vu.Runtime()

var keyGenerator KeyGenerator
Expand Down

0 comments on commit e1a078c

Please sign in to comment.