(isUTC: boolean)
| 505 | } |
| 506 | |
| 507 | export function dateSetterName(isUTC: boolean) { |
| 508 | return isUTC ? 'setUTCDate' : 'setDate'; |
| 509 | } |
| 510 | |
| 511 | export function hoursSetterName(isUTC: boolean) { |
| 512 | return isUTC ? 'setUTCHours' : 'setHours'; |
no outgoing calls
no test coverage detected