(input, keepLocalTime)
| 3342 | } |
| 3343 | |
| 3344 | function getSetZone(input, keepLocalTime) { |
| 3345 | if (input != null) { |
| 3346 | if (typeof input !== 'string') { |
| 3347 | input = -input; |
| 3348 | } |
| 3349 | |
| 3350 | this.utcOffset(input, keepLocalTime); |
| 3351 | |
| 3352 | return this; |
| 3353 | } else { |
| 3354 | return -this.utcOffset(); |
| 3355 | } |
| 3356 | } |
| 3357 | |
| 3358 | function setOffsetToUTC(keepLocalTime) { |
| 3359 | return this.utcOffset(0, keepLocalTime); |
nothing calls this directly
no outgoing calls
no test coverage detected