(placeholderValue: DateValue | null | undefined)
| 229 | } |
| 230 | |
| 231 | export function getPlaceholderTime(placeholderValue: DateValue | null | undefined): TimeValue { |
| 232 | if (placeholderValue && 'hour' in placeholderValue) { |
| 233 | return placeholderValue; |
| 234 | } |
| 235 | |
| 236 | return new Time(); |
| 237 | } |
| 238 | |
| 239 | export function convertValue( |
| 240 | value: DateValue | null | undefined, |
no outgoing calls
no test coverage detected