()
| 135 | } |
| 136 | |
| 137 | createUser() |
| 138 | { |
| 139 | const user = {} |
| 140 | user.name = this.getRandomName() |
| 141 | user.color = this.getRandomColor() |
| 142 | user.id = ids.getId() |
| 143 | |
| 144 | this.users[user.id] = user |
| 145 | |
| 146 | return user |
| 147 | } |
| 148 | |
| 149 | shuffle(a) |
| 150 | { |
no test coverage detected