(obj)
| 1237 | } |
| 1238 | |
| 1239 | function isCryptoKey(obj) { |
| 1240 | if (obj == null || typeof obj !== 'object') |
| 1241 | return false; |
| 1242 | |
| 1243 | try { |
| 1244 | getSlots(obj); |
| 1245 | return true; |
| 1246 | } catch { |
| 1247 | return false; |
| 1248 | } |
| 1249 | } |
| 1250 | |
| 1251 | function importGenericSecretKey( |
| 1252 | algorithm, |
no outgoing calls
searching dependent graphs…