(fontFaceSet: FontFaceSet, fontFace: FontFace)
| 7 | let isInterFontLoaded = false; |
| 8 | |
| 9 | function addToFontFaceSet(fontFaceSet: FontFaceSet, fontFace: FontFace) { |
| 10 | // any cast to work around typing issue |
| 11 | (fontFaceSet as any).add(fontFace); |
| 12 | } |
| 13 | |
| 14 | function loadJetBrainsMonoFont() { |
| 15 | if (isJetBrainsMonoLoaded) { |
no outgoing calls
no test coverage detected