@w5s/uuidFunctionsrandomUUIDrandomUUID CallablerandomUUID(): Task<UUID, never>A task that returns a new UUID@exampleconst createUser = (name: string) => Task.map(randomUUID(), (uuid) => ({ id: uuid, name,}));
A task that returns a new
UUID