(val)
| 216 | } |
| 217 | |
| 218 | value(val) { |
| 219 | if (undefined === val) { |
| 220 | this.userValue = undefined; |
| 221 | this.blinkSpeed = 0; |
| 222 | } |
| 223 | else |
| 224 | this.userValue = (" " + val.toString().toLowerCase()).slice(-4); |
| 225 | return this; |
| 226 | } |
| 227 | |
| 228 | get timeShowing() { return this.userValue === undefined; } |
| 229 |
no test coverage detected