0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-10 17:10:06 -05:00
penpot-exporter-figma-plugin/src/ui/validators/validateFont.ts

11 lines
244 B
TypeScript
Raw Normal View History

2024-04-08 10:50:01 -05:00
import slugify from 'slugify';
import fonts from '../gfonts.json';
const gfonts = new Set(fonts);
export const validateFont = (fontFamily: string): boolean => {
const name = slugify(fontFamily.toLowerCase());
2024-04-08 10:50:01 -05:00
return gfonts.has(name);
};