(obj)
| 289 | var withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; |
| 290 | // ArrayBuffer.isView method is not defined in IE10 |
| 291 | var isView$1 = function isView(obj) { |
| 292 | return typeof ArrayBuffer.isView === "function" ? ArrayBuffer.isView(obj) : obj && obj.buffer instanceof ArrayBuffer; |
| 293 | }; |
| 294 | var encodePacket = function encodePacket(_ref, supportsBinary, callback) { |
| 295 | var type = _ref.type, |
| 296 | data = _ref.data; |
no outgoing calls
no test coverage detected