(algorithm, key, data)
| 1268 | } |
| 1269 | |
| 1270 | function encrypt(algorithm, key, data) { |
| 1271 | return callSubtleCryptoMethod(encryptImpl, this, arguments); |
| 1272 | } |
| 1273 | |
| 1274 | function encryptImpl(algorithm, key, data) { |
| 1275 | const prefix = prepareSubtleMethod(this, 'encrypt', arguments.length, 3); |
nothing calls this directly
no test coverage detected
searching dependent graphs…