mirror of
https://github.com/ivabus/gui
synced 2025-04-24 22:47:14 +03:00
6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
export const nameToSlug = (name: string) => {
|
|
// github.com/Pypa/twine -> github_com_pypa_twine
|
|
const [nameOnly] = name.split("@");
|
|
const slug = nameOnly.replace(/[^\w\s]/gi, "_").toLocaleLowerCase();
|
|
return slug;
|
|
};
|