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

svg-path-parser

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svg-path-parser - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

2

package.json
{
"name": "svg-path-parser",
"version": "0.0.0",
"version": "0.0.1",
"description": "A parser for SVG's path syntax",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1382,5 +1382,5 @@ module.exports = (function(){

result0 = parse_digit_sequence();
result0 = parse_floating_point_constant();
if (result0 === null) {
result0 = parse_floating_point_constant();
result0 = parse_digit_sequence();
}

@@ -1398,3 +1398,3 @@ return result0;

if (result0 !== null) {
result1 = parse_digit_sequence();
result1 = parse_floating_point_constant();
if (result1 !== null) {

@@ -1415,3 +1415,3 @@ result0 = [result0, result1];

if (result0 !== null) {
result1 = parse_floating_point_constant();
result1 = parse_digit_sequence();
if (result1 !== null) {

@@ -1418,0 +1418,0 @@ result0 = [result0, result1];

@@ -5,4 +5,5 @@ # svg-path-parser [![stable](http://hughsk.github.io/stability-badges/dist/stable.svg)](http://github.com/hughsk/stability-badges) #

specified [here](http://pastie.org/1036541), published as an NPM module.
I'm unsure of the original source unfortunately.
Originally written by [Gavin Kistner](http://github.com/Phrogz).
[![svg-path-parser](https://nodei.co/npm/svg-path-parser.png?mini=true)](https://nodei.co/npm/svg-path-parser)

@@ -9,0 +10,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