Any idea to make otfcc a Node.js binding? For example: ```js const otfcc = require('otfcc'); const data = otfcc.dumpFromFile('font.ttf'); // do something otfcc.buildFromJSON(data, { optimizeLevel: 3, ignoreHints: true }); ``` Currently I'm using `child_process` to manually invoke otfcc, which is really a pain.
Any idea to make otfcc a Node.js binding? For example:
Currently I'm using
child_processto manually invoke otfcc, which is really a pain.