(input)
| 3386 | } |
| 3387 | |
| 3388 | function hasAlignedHourOffset(input) { |
| 3389 | if (!this.isValid()) { |
| 3390 | return false; |
| 3391 | } |
| 3392 | input = input ? createLocal(input).utcOffset() : 0; |
| 3393 | |
| 3394 | return (this.utcOffset() - input) % 60 === 0; |
| 3395 | } |
| 3396 | |
| 3397 | function isDaylightSavingTime() { |
| 3398 | return ( |
nothing calls this directly
no test coverage detected