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