(_time)
| 98 | //#region time |
| 99 | |
| 100 | setTime(_time) { |
| 101 | // Use the native `setTime` to the external date time. |
| 102 | Date.prototype.setTime.apply(this, arguments); |
| 103 | |
| 104 | // Then apply it to the internal date adjusting to the timezone offset. |
| 105 | syncToInternal(this); |
| 106 | |
| 107 | return +this; |
| 108 | } |
| 109 | |
| 110 | //#endregion |
| 111 |
no test coverage detected