parsePath(SVGPath: String): ReanimatedPath
Given an SVG Path, returns a denormalized object of values that can be used for animations on that path. From the perspective of the user, the returned value should be considered a black box. Here is an example below:
// We get the data from the SVG Path denormalized a way that can be handled with Reanimatedconst path = parsePath(d);const { y, x } = getPointAtLength(path, length);