/** * Generates a unique random string using the Math.random() method. */ export default function uniq(): string { return Math.random().toString(16).slice(2); }