(that, f, event)
| 698 | }; |
| 699 | |
| 700 | var fire = function (that, f, event) { |
| 701 | try { |
| 702 | if (typeof f === "function") { |
| 703 | f.call(that, event); |
| 704 | } |
| 705 | } catch (e) { |
| 706 | throwError(e); |
| 707 | } |
| 708 | }; |
| 709 | |
| 710 | function EventSourcePolyfill(url, options) { |
| 711 | EventTarget.call(this); |
no test coverage detected