Get a string array of ligatures for a given font
npm install ligaturesUses [fontkit] to get an array of ligatures for a font. Useful for icon fonts. [Demo Site].
```
npm i ligatures

`js
const { getLigaturesFromPath } = require("ligatures");
(async () => {
const ligatures = await getLigaturesFromPath("matIconFont.woff");
console.log(ligatures);
// [3d_rotation, 360, desktop_access_disabled, domain_verification, ...]
})();
`
`ts
export declare const getLigaturesFromPath: (
fontFilePath: string
) => Promise
export declare const getLigaturesFromBuffer: (
fontFileBuffer: Buffer
) => string[];
``
If you're creating design systems, you may have a component specifically for rendering icons, and that component may depend on a font file that uses ligatures to display icons.
You may want to create a TypeScript interface of the union of all possible ligatures for your font, providing intelliense and a generally superior developer experience to the consumers of your design system.
[demo site]: https://petermikitsh.github.io/ligatures
[fontkit]: https://github.com/foliojs/fontkit