* Returns the value of a CryptoKey's `[[extractable]]` internal slot. * @param {CryptoKey} key * @returns {boolean}
(key)
| 1168 | * @returns {boolean} |
| 1169 | */ |
| 1170 | function getCryptoKeyExtractable(key) { |
| 1171 | return getSlots(key)[kSlotExtractable]; |
| 1172 | } |
| 1173 | |
| 1174 | /** |
| 1175 | * Returns the CryptoKey's `[[algorithm]]` internal slot, bypassing the |
no outgoing calls
no test coverage detected
searching dependent graphs…