()
| 125200 | parcelHelpers.defineInteropFlag(exports); |
| 125201 | const pi = Math.PI, tau = 2 * pi, epsilon = 1e-6, tauEpsilon = tau - epsilon; |
| 125202 | function Path() { |
| 125203 | this._x0 = this._y0 = this._x1 = this._y1 = null; // end of current subpath |
| 125204 | this._ = ""; |
| 125205 | } |
| 125206 | function path() { |
| 125207 | return new Path; |
| 125208 | } |
nothing calls this directly
no outgoing calls
no test coverage detected