(subClass, superClass)
| 8474 | } |
| 8475 | |
| 8476 | function _inherits(subClass, superClass) { |
| 8477 | if (typeof superClass !== "function" && superClass !== null) { |
| 8478 | throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); |
| 8479 | } |
| 8480 | |
| 8481 | subClass.prototype = Object.create(superClass && superClass.prototype, { |
| 8482 | constructor: { |
| 8483 | value: subClass, |
| 8484 | enumerable: false, |
| 8485 | writable: true, |
| 8486 | configurable: true |
| 8487 | } |
| 8488 | }); |
| 8489 | if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; |
| 8490 | } |
| 8491 | |
| 8492 | var MAX_SIGNED_31_BIT_INT = 1073741823; // Inlined Object.is polyfill. |
| 8493 | // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is |
no outgoing calls
no test coverage detected
searching dependent graphs…