How to use the svg-pathdata.Transformer function in svg-pathdata

To help you get started, we’ve selected a few svg-pathdata examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nfroidure / svgfont2svgicons / src / index.js View on Github external
startContent.write('\
\
  \
');
      endContent.end();
      stream.done();
    }
github nfroidure / svgfont2svgicons / src / index.js View on Github external
xmlns:svg="http://www.w3.org/2000/svg"\
   xmlns="http://www.w3.org/2000/svg"\
   version="1.1"\
   width="' + stream.metadata.width + '"\
   height="' + stream.metadata.height + '"\
   viewBox="0 0 ' + stream.metadata.width + ' ' + stream.metadata.height + '">\
  \
');
      endContent.end();
      stream.done();
    }
  });