* Returns the CryptoKey's `[[usages]]` internal slot, bypassing the * public `usages` getter (which returns a cloned array). The internal * array is expanded lazily from the native usage mask. * @param {CryptoKey} key * @returns {string[]}
(key)
| 1223 | * @returns {string[]} |
| 1224 | */ |
| 1225 | function getCryptoKeyUsages(key) { |
| 1226 | return getCryptoKeyUsagesFromSlots(getSlots(key)); |
| 1227 | } |
| 1228 | |
| 1229 | /** |
| 1230 | * Returns the KeyObjectHandle wrapping the CryptoKey's underlying |
no test coverage detected
searching dependent graphs…