Fixup format

This commit is contained in:
Belleve Invis 2020-04-12 00:10:12 -07:00
parent 0b1452a3a7
commit e6da99af60
15 changed files with 47 additions and 45 deletions

View file

@ -2,7 +2,7 @@
const fs = require("fs");
const ttf2woff = require("ttf2woff");
module.exports = function(from, to) {
module.exports = function (from, to) {
const input = fs.readFileSync(from);
const ttf = new Uint8Array(input);
const woff = Buffer.from(ttf2woff(ttf, {}).buffer);