| 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.'); |
| 4989 | let streams = symbols.map(symbol => symbol.toLowerCase() + '@aggTrade'); |
nothing calls this directly
no test coverage detected