import { isoTimestamp } from "https://deno.land/x/valibot@v0.24.0/src/index.ts";
Creates a validation function that validates a timestamp.
Format: yyyy-mm-ddThh:mm:ss.sssZ
Hint: The regex used cannot validate the maximum number of days based on year and month. For example, "2023-06-31T00:00:00.000Z" is valid although June has only 30 days.
Parameters
optional
message: ErrorMessage = [UNSUPPORTED]The error message.
Returns
A validation function.