( fontId: string, subset: string, weight: string, style: string, extension: string, )
| 28 | |
| 29 | // Used for the src urls in CSS files |
| 30 | const makeFontFilePath = ( |
| 31 | fontId: string, |
| 32 | subset: string, |
| 33 | weight: string, |
| 34 | style: string, |
| 35 | extension: string, |
| 36 | ): string => |
| 37 | cleanPaths(`./files/${fontId}-${subset}-${weight}-${style}.${extension}`); |
| 38 | |
| 39 | const makeVariableFontFilePath = ( |
| 40 | fontId: string, |
no test coverage detected