(algorithm, key, data)
| 1204 | } |
| 1205 | |
| 1206 | function sign(algorithm, key, data) { |
| 1207 | return callSubtleCryptoMethod(signImpl, this, arguments); |
| 1208 | } |
| 1209 | |
| 1210 | function signImpl(algorithm, key, data) { |
| 1211 | const prefix = prepareSubtleMethod(this, 'sign', arguments.length, 3); |
nothing calls this directly
no test coverage detected
searching dependent graphs…