function generateimport { generate } from "https://dotland.deno.dev/std@0.224.0/uuid/v5.ts"; generate(namespace: string, data: Uint8Array): Promise<string>Generate a RFC4122 v5 UUID (SHA-1 namespace). ExamplesExample 1 import { generate } from "https://deno.land/std@0.224.0/uuid/v5.ts"; const NAMESPACE_URL = "6ba7b811-9dad-11d1-80b4-00c04fd430c8"; const uuid = await generate(NAMESPACE_URL, new TextEncoder().encode("python.org")); uuid === "7af94e2b-4dd9-50f0-9c9a-8a48519bdef0" // true Parametersnamespace: stringThe namespace to use, encoded as a UUID. data: Uint8ArrayThe data to hash to calculate the SHA-1 digest for the UUID. ReturnsPromise<string>