Error: 'svgPathProperties' is not exported
Author: priestonCreated May 19, 2020Updated Nov 11, 2020
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";```Source: veltman/flubber