1 2 3 4 5
import type { Temporal } from "temporal-polyfill"; export function instantAsHtmlInputValueString(instant: Temporal.Instant) { return instant.toString().split("T")[0] }