@glissade/core 0.13.0-pre.2 → 0.13.0-pre.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -144,7 +144,7 @@ async function ingestFont(init) {
144
144
  if (!needsDecode && !needsInstance) bytes = input;
145
145
  else {
146
146
  let decoded = input;
147
- if (needsDecode) decoded = await (await loadFontverter())(input, "truetype");
147
+ if (needsDecode) decoded = await (await loadFontverter())(Buffer.from(input), "truetype");
148
148
  if (needsInstance) {
149
149
  const subsetFont = await loadSubsetFont();
150
150
  const coverage = parseCmap(decoded);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissade/core",
3
- "version": "0.13.0-pre.2",
3
+ "version": "0.13.0-pre.3",
4
4
  "description": "glissade core: signals, tracks, timeline document, evaluation, easing, springs, seeded RNG. Zero DOM/Node dependencies.",
5
5
  "license": "Apache-2.0",
6
6
  "engines": {