(input)
| 3227 | } |
| 3228 | |
| 3229 | function hasAlignedHourOffset (input) { |
| 3230 | input = input ? local__createLocal(input).utcOffset() : 0; |
| 3231 | |
| 3232 | return (this.utcOffset() - input) % 60 === 0; |
| 3233 | } |
| 3234 | |
| 3235 | function isDaylightSavingTime () { |
| 3236 | return ( |
nothing calls this directly
no test coverage detected