(obj)
| 1518 | return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; |
| 1519 | } |
| 1520 | function numberIsNaN(obj) { |
| 1521 | // For IE11 support |
| 1522 | return obj !== obj; // eslint-disable-line no-self-compare |
| 1523 | } |
| 1524 | |
| 1525 | // Create lookup table for `toString('hex')` |
| 1526 | // See: https://github.com/feross/buffer/issues/219 |
no outgoing calls
no test coverage detected
searching dependent graphs…