import { randomUUID } from "crypto";
import type { UUID } from "./types";

export function v4(): UUID {
  return randomUUID();
}
