serialize-svg-path

compile svg path data to DOM compatable strings

Usage no npm install needed!

<script type="module">
  import serializeSvgPath from 'https://cdn.skypack.dev/serialize-svg-path';
</script>

README

serialize-svg-path

compile svg path data to DOM compatable strings

Installation

With your favourite package manager:

  • packin: packin add jkroso/serialize-svg-path
  • component: component install jkroso/serialize-svg-path
  • npm: npm install serialize-svg-path

then in your app:

var serialize = require('serialize-svg-path')

API

serialize(path)

convert path to a string

serialize([['m',1,2],['c',1,2,3,4,5,6]]) // => 'm1,2c1,2,3,4,5,6'