mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export const formatFonts = (fonts: string[]): string => {
|
|
return fonts.map((font) => `'${font}'`).join(',');
|
|
};
|