UNPKG
text-to-svg-hb
Version:
latest (1.0.0)
1.0.0
Convert text to SVG paths with HarfBuzz support for complex text shaping
text-to-svg-hb
/
hbmain.js
9 lines
(7 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
hbjs =
require
(
"./hbjs.js"
);
var
hb =
require
(
"./hb.js"
);
module
.
exports
=
new
Promise
(
function
(
resolve, reject
) {
hb
().
then
(
(
instance
) =>
{
resolve
(
hbjs
(instance)); }, reject); });