* Returns the space by it's workspace index value.
(workspaceIndex)
| 3242 | * Returns the space by it's workspace index value. |
| 3243 | */ |
| 3244 | spaceOfIndex(workspaceIndex) { |
| 3245 | let workspace = [...this.keys()].find(w => workspaceIndex === w.index()); |
| 3246 | return this.spaceOf(workspace); |
| 3247 | } |
| 3248 | |
| 3249 | /** |
| 3250 | * Returns the space of a specific uuid. |
no test coverage detected