()
| 815 | * @since 4.0.0 |
| 816 | */ |
| 817 | export function Date<E extends string | number | Date>(): Getter<Date, E> { |
| 818 | return transform((u) => new globalThis.Date(u)) |
| 819 | } |
| 820 | |
| 821 | /** |
| 822 | * Strips whitespace from both ends of a string. |
nothing calls this directly
no test coverage detected