svg-path-parser
Advanced tools
Comparing version 0.0.0 to 0.0.1
{ | ||
"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 @@ |
58660
152