(obj, type)
| 114060 | // the `instanceof` check but they should be treated as of that type. |
| 114061 | // See: https://github.com/feross/buffer/issues/166 |
| 114062 | function isInstance(obj, type) { |
| 114063 | return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; |
| 114064 | } |
| 114065 | function numberIsNaN(obj) { |
| 114066 | // For IE11 support |
| 114067 | return obj !== obj // eslint-disable-line no-self-compare |
no outgoing calls
no test coverage detected