coyotte508's picture
coyotte508 HF staff
🔥 Remove lodash from client code
9a79ad0
raw history blame
No virus
194 Bytes
import { nanoid } from 'nanoid';
import { kebabCase } from './kebabCase';
export function generateId(name: string): string {
return kebabCase(name.replace(/&/g, '-and-')) + '-' + nanoid(6);
}