()
| 308 | } |
| 309 | |
| 310 | get raw() { |
| 311 | let value = this[kInternalState].get('raw'); |
| 312 | if (value === undefined) { |
| 313 | value = this[kHandle].raw(); |
| 314 | this[kInternalState].set('raw', value); |
| 315 | } |
| 316 | return value; |
| 317 | } |
| 318 | |
| 319 | get publicKey() { |
| 320 | let value = this[kInternalState].get('publicKey'); |
no test coverage detected