(chartTitle: string)
| 20 | } |
| 21 | |
| 22 | export function titleToLocalStorageKey(chartTitle: string) { |
| 23 | return ["flowcharts.fun", chartTitle].filter(Boolean).join(":"); |
| 24 | } |
| 25 | |
| 26 | export const slugify = (value: string) => |
| 27 | value.replace(/[^a-z0-9]/gi, "-").toLocaleLowerCase(); |