| 169 | * @return {boolean} true or false is iterable |
| 170 | */ |
| 171 | const isIterable = obj => { |
| 172 | if (obj === null) return false; |
| 173 | return typeof obj[Symbol.iterator] === 'function'; |
| 174 | } |
| 175 | |
| 176 | const addProxy = opt => { |
| 177 | if (Binance.options.proxy) { |
no outgoing calls
no test coverage detected