()
| 17 | * @returns A FontContext object. |
| 18 | */ |
| 19 | export const createFontContext = (): FontContext => { |
| 20 | const glyphtContext = new GlyphtContext(); |
| 21 | const compressionContext = new WoffCompressionContext(); |
| 22 | |
| 23 | return { |
| 24 | glyphtContext, |
| 25 | compressionContext, |
| 26 | destroy: () => { |
| 27 | glyphtContext.destroy(); |
| 28 | compressionContext.destroy(); |
| 29 | }, |
| 30 | }; |
| 31 | }; |