svg-pathdata
Advanced tools
Comparing version 7.0.0 to 7.0.1
@@ -0,1 +1,10 @@ | ||
## [7.0.1](https://github.com/nfroidure/svg-pathdata/compare/v7.0.0...v7.0.1) (2024-08-27) | ||
### Bug Fixes | ||
* correct condition check for 'y2' in ROUND function ([9f332a6](https://github.com/nfroidure/svg-pathdata/commit/9f332a6ffc005322f936f997458adf781900e88c)) | ||
# [7.0.0](https://github.com/nfroidure/svg-pathdata/compare/v6.0.3...v7.0.0) (2024-07-29) | ||
@@ -2,0 +11,0 @@ |
@@ -23,3 +23,3 @@ /* eslint @typescript-eslint/no-explicit-any:0 */ | ||
} | ||
if ('x2' in command && 'undefined' !== typeof command.y2) { | ||
if ('y2' in command && 'undefined' !== typeof command.y2) { | ||
command.y2 = rf(command.y2); | ||
@@ -26,0 +26,0 @@ } |
@@ -26,3 +26,3 @@ { | ||
"name": "svg-pathdata", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"description": "Manipulate SVG path data (path[d] attribute content) simply and efficiently.", | ||
@@ -29,0 +29,0 @@ "type": "module", |
@@ -36,3 +36,3 @@ /* eslint @typescript-eslint/no-explicit-any:0 */ | ||
} | ||
if ('x2' in command && 'undefined' !== typeof command.y2) { | ||
if ('y2' in command && 'undefined' !== typeof command.y2) { | ||
command.y2 = rf(command.y2); | ||
@@ -39,0 +39,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
566003
0