flubber
flubber copied to clipboard
Error: 'svgPathProperties' is not exported
In your code
node_modules/flubber/src/svg.js (2:9)
1: import Path from "svgpath";
2: import { svgPathProperties } from "svg-path-properties";
^
3: import normalizeRing from "./normalize.js";
4: import { isFiniteNumber } from "./math.js";
svPathProperties is not an exported name , the correct import is
2: import svgPathProperties from "svg-path-properties";
^
3: import normalizeRing from "./normalize.js";
4: import { isFiniteNumber } from "./math.js";```
Any update on this one?