(val)
| 7548 | } |
| 7549 | |
| 7550 | function cloneBuffer(val) { |
| 7551 | const len = val.length; |
| 7552 | const buf = Buffer.allocUnsafe ? Buffer.allocUnsafe(len) : Buffer.from(len); |
| 7553 | val.copy(buf); |
| 7554 | return buf; |
| 7555 | } |
| 7556 | |
| 7557 | function cloneSymbol(val) { |
| 7558 | return valueOf ? Object(valueOf.call(val)) : {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…