mirror of
https://github.com/ivabus/gui
synced 2025-04-24 14:37:11 +03:00

* #245 implement push notification using pushy * #298 subscribe to installed package --------- Co-authored-by: neil <neil@neils-MacBook-Pro.local>
5 lines
180 B
TypeScript
5 lines
180 B
TypeScript
export const nameToSlug = (name: string) => {
|
|
// github.com/Pypa/twine -> github_com_pypa_twine
|
|
const slug = name.replace(/[^\w\s]/gi, "_").toLocaleLowerCase();
|
|
return slug;
|
|
};
|