(focus: any)
| 163 | } |
| 164 | |
| 165 | public get(focus: any) { |
| 166 | if (focus !== undefined) return this.data[focus % this.data.length] |
| 167 | else return this.data[this.focus] |
| 168 | } |
| 169 | |
| 170 | public toString() { |
| 171 | return JSON.stringify(this, undefined, 4) |
no outgoing calls
no test coverage detected