(x, y)
| 8493 | // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is |
| 8494 | |
| 8495 | function objectIs(x, y) { |
| 8496 | if (x === y) { |
| 8497 | return x !== 0 || 1 / x === 1 / y; |
| 8498 | } else { |
| 8499 | return x !== x && y !== y; |
| 8500 | } |
| 8501 | } |
| 8502 | |
| 8503 | function createEventEmitter(value) { |
| 8504 | var handlers = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…