(timeRequest)
| 361 | } |
| 362 | |
| 363 | parseTimeReq(timeRequest) { |
| 364 | if (undefined === timeRequest) |
| 365 | return 0; |
| 366 | let h = timeRequest.slice(0,2); |
| 367 | let m = timeRequest.slice(-2); |
| 368 | return h+m; |
| 369 | } |
| 370 | |
| 371 | |
| 372 | // checkFormat looks for "f" within formats. If not found, treat f as an index |