(obj)
| 203 | var withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; |
| 204 | // ArrayBuffer.isView method is not defined in IE10 |
| 205 | var isView$1 = function isView(obj) { |
| 206 | return typeof ArrayBuffer.isView === "function" ? ArrayBuffer.isView(obj) : obj && obj.buffer instanceof ArrayBuffer; |
| 207 | }; |
| 208 | var encodePacket = function encodePacket(_ref, supportsBinary, callback) { |
| 209 | var type = _ref.type, |
| 210 | data = _ref.data; |
no outgoing calls
no test coverage detected