(e3, target, eventConstructor = Event, eventInitDict)
| 63055 | return ws[kReadyState] === states.OPEN; |
| 63056 | } |
| 63057 | function isClosing(ws) { |
| 63058 | return ws[kReadyState] === states.CLOSING; |
| 63059 | } |
| 63060 | function isClosed(ws) { |
| 63061 | return ws[kReadyState] === states.CLOSED; |
| 63062 | } |
| 63063 | function fireEvent(e3, target, eventConstructor = Event, eventInitDict) { |
no outgoing calls
no test coverage detected
searching dependent graphs…