(algorithm, key, data)
| 1297 | } |
| 1298 | |
| 1299 | function decrypt(algorithm, key, data) { |
| 1300 | return callSubtleCryptoMethod(decryptImpl, this, arguments); |
| 1301 | } |
| 1302 | |
| 1303 | function decryptImpl(algorithm, key, data) { |
| 1304 | const prefix = prepareSubtleMethod(this, 'decrypt', arguments.length, 3); |
nothing calls this directly
no test coverage detected
searching dependent graphs…