Format cleanup

This commit is contained in:
be5invis 2022-07-17 00:31:02 -07:00
parent 36835216f5
commit e61edd0db9
13 changed files with 52 additions and 52 deletions

View file

@ -1,6 +1,6 @@
import { Ot } from "ot-builder";
export const CreateEmptyFont = function (argv) {
export function CreateEmptyFont(argv) {
let font = {
head: new Ot.Head.Table(),
hhea: new Ot.MetricHead.Hhea(),
@ -14,4 +14,4 @@ export const CreateEmptyFont = function (argv) {
font.head.modified = new Date(process.env.SOURCE_DATE_EPOCH * 1000);
}
return font;
};
}