(obj)
| 1849 | // ArrayBuffers from another context (i.e. an iframe) do not pass the `instanceof` check |
| 1850 | // but they should be treated as valid. See: https://github.com/feross/buffer/issues/166 |
| 1851 | function isArrayBuffer (obj) { |
| 1852 | return obj instanceof ArrayBuffer || |
| 1853 | (obj != null && obj.constructor != null && obj.constructor.name === 'ArrayBuffer' && |
| 1854 | typeof obj.byteLength === 'number') |
| 1855 | } |
| 1856 | |
| 1857 | function numberIsNaN (obj) { |
| 1858 | return obj !== obj // eslint-disable-line no-self-compare |
no outgoing calls
no test coverage detected
searching dependent graphs…