mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-06 23:00:55 -05:00
2920ac297b
* wip * implement bullet points * needs more ifs * refactor * revert * refactor * fix and refactor * refactor * refactor * refactor * add ordered class * wip * wip * fixes * package.json * little refactors * base list * fixes * abstract baselist * refactors * refactor * changeset * fix eslint issue * fix * fixes * fixes --------- Co-authored-by: Alex Sánchez <sion333@gmail.com>
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
const customFontIds = new Map<string, string>();
|
|
|
|
export const getCustomFontId = (fontName: FontName) => {
|
|
return customFontIds.get(fontName.family);
|
|
};
|
|
|
|
export const setCustomFontId = (fontFamily: string, fontId: string) => {
|
|
customFontIds.set(fontFamily, fontId);
|
|
};
|