UNPKG

roleplayer

Version:

A library for building table top role playing game worlds, and managing campaigns in those worlds

7 lines (5 loc) 119 B
import { v7 as uuidv7 } from "uuid"; export type Id = string; export function generateId(): Id { return uuidv7(); }