(i)
| 68 | * @returns {Promise<T>} promise with the data |
| 69 | */ |
| 70 | const next = (i) => |
| 71 | this._items[i].getPromise().then((result) => { |
| 72 | if (result !== undefined) return result; |
| 73 | if (++i < this._items.length) return next(i); |
| 74 | }); |
| 75 | return next(0); |
| 76 | } |
| 77 |
nothing calls this directly
no test coverage detected