(format, key)
| 763 | } |
| 764 | |
| 765 | function exportKeyImpl(format, key) { |
| 766 | const prefix = prepareSubtleMethod(this, 'exportKey', arguments.length, 2); |
| 767 | let i = 0; |
| 768 | format = convertSubtleArgument(prefix, 'KeyFormat', format, i++); |
| 769 | key = convertSubtleArgument(prefix, 'CryptoKey', key, i++); |
| 770 | |
| 771 | return exportKeySync(format, key); |
| 772 | } |
| 773 | |
| 774 | // Parsed JWK arrays are detached from Array.prototype but still need to pass |
| 775 | // WebIDL sequence conversion, which reads @@iterator from the value. |
nothing calls this directly
no test coverage detected
searching dependent graphs…