()
| 4981 | */ |
| 4982 | futuresAggTradeStream: function futuresAggTradeStream(symbols, callback) { |
| 4983 | let reconnect = () => { |
| 4984 | if (Binance.options.reconnect) futuresAggTradeStream(symbols, callback); |
| 4985 | }; |
| 4986 | let subscription, cleanCallback = data => callback(fAggTradeConvertData(data)); |
| 4987 | if (Array.isArray(symbols)) { |
| 4988 | if (!isArrayUnique(symbols)) throw Error('futuresAggTradeStream: "symbols" cannot contain duplicate elements.'); |
no outgoing calls
no test coverage detected