UNPKG
make-glyphs
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
Tools for working with .glyphs font files.
github.com/delucis/make-glyphs
delucis/make-glyphs
make-glyphs
/
lib
/
write.js
5 lines
(3 loc)
•
173 B
JavaScript
View Raw
1
2
3
4
5
const
WRITE_GLYPHS
=
require
(
'write-glyphs-file'
)
const
VALIDATE
=
require
(
'./validate'
)
module
.
exports
=
async
(fp, g, o) =>
VALIDATE
(g).
then
(
g
=>
WRITE_GLYPHS
(fp, g, o))