Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

svg-pathdata

Package Overview
Dependencies
Maintainers
4
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svg-pathdata - npm Package Compare versions

Comparing version 7.0.0 to 7.0.1

9

CHANGELOG.md

@@ -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 @@

2

dist/SVGPathDataTransformer.js

@@ -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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc