()
| 6582 | |
| 6583 | symbols.forEach(symbol => { |
| 6584 | const promise = () => new Promise(resolve => { |
| 6585 | this.depthCacheStream(symbol, callback, limit); |
| 6586 | setTimeout(resolve, stagger); |
| 6587 | }); |
| 6588 | chain = chain ? chain.then(promise) : promise(); |
| 6589 | }); |
| 6590 |
nothing calls this directly
no test coverage detected