* Returns the CryptoKey's `[[algorithm]]` internal slot, bypassing the * public `algorithm` getter (which returns a cloned copy). * @param {CryptoKey} key * @returns {object}
(key)
| 1178 | * @returns {object} |
| 1179 | */ |
| 1180 | function getCryptoKeyAlgorithm(key) { |
| 1181 | return getSlots(key)[kSlotAlgorithm]; |
| 1182 | } |
| 1183 | |
| 1184 | /** |
| 1185 | * Returns the CryptoKey's native `[[usages]]` mask. |
no outgoing calls
no test coverage detected
searching dependent graphs…