(val)
| 441 | } |
| 442 | |
| 443 | function isStringOrBuffer(val) { |
| 444 | return typeof val === 'string' || |
| 445 | isArrayBufferView(val) || |
| 446 | isAnyArrayBuffer(val); |
| 447 | } |
| 448 | |
| 449 | function parseKeyEncoding(enc, keyType, isPublic, objName) { |
| 450 | validateObject(enc, 'options'); |
no outgoing calls
no test coverage detected
searching dependent graphs…