(value: string)
| 83 | } |
| 84 | |
| 85 | public static parseFamilies(value: string): string[] { |
| 86 | const parser = new FontParser(value); |
| 87 | parser.parseOnlyFamilies = true; |
| 88 | parser.parse(); |
| 89 | return parser.families; |
| 90 | } |
| 91 | |
| 92 | private _fontFamily() { |
| 93 | if (!this._currentToken) { |
no test coverage detected