* Gets the current state of the collection as an Array * * @returns An Array containing all items in the collection
()
| 848 | * @returns An Array containing all items in the collection |
| 849 | */ |
| 850 | get toArray() { |
| 851 | return Array.from(this.values()) |
| 852 | } |
| 853 | |
| 854 | /** |
| 855 | * Gets the current state of the collection as an Array, but only resolves when data is available |
no test coverage detected