aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/lib/helpers.ts
blob: 35b5f6580d511e80fe66cf95139c3128a5b79472 (plain) (blame)
1
2
3
4
5
import type { Temporal } from "temporal-polyfill";

export function instantAsHtmlInputValueString(instant: Temporal.Instant) {
    return instant.toString().split("T")[0]
}