fp/packages/utils/src/name.ts
CJ_Clippy 4d65294f7d
Some checks failed
ci / build (push) Failing after 1s
move fetchers to their own package
2024-09-05 21:39:08 -08:00

12 lines
269 B
TypeScript

import slug from 'slug';
export function fpSlugify(str: string): string {
return slug(str, {
replacement: '-',
lower: true,
locale: 'en',
trim: true,
});
}
export const ua0 = 'Mozilla/5.0 (X11; Linux x86_64; rv:105.0) Gecko/20100101 Firefox/105.0'