npm install parse-svg-pathA minimal svg path parser. For the delux model see hughsk/svg-path-parser or for the streaming model see nfroidure/SVGPathData.
- packin: packin add jkroso/parse-svg-path
- component: component install jkroso/parse-svg-path
- npm: npm install parse-svg-path
then in your app:
``js`
var parse = require('parse-svg-path')
parse an svg path data string. Generates an Array
of commands where each command is an Array of the
form [command, arg1, arg2, ...]
`js`
parse('m1 2 3 4') // => [['m',1,2],['l',3,4]]
Just run make` and navigate your browser to the test directory.