(obj)
| 90 | configurable: false, |
| 91 | enumerable: true, |
| 92 | value(obj) { |
| 93 | if (!process.versions.openssl) { |
| 94 | return false; |
| 95 | } |
| 96 | |
| 97 | if (!isKeyObject) { |
| 98 | ({ isKeyObject } = require('internal/crypto/keys')); |
| 99 | } |
| 100 | |
| 101 | return isKeyObject(obj); |
| 102 | }, |
| 103 | }, |
| 104 | isCryptoKey: { |
| 105 | __proto__: null, |
nothing calls this directly
no test coverage detected
searching dependent graphs…