├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib └── svg-path-generator.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/svg-path-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/svg-path-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/svg-path-generator/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/svg-path-generator'); 3 | 4 | -------------------------------------------------------------------------------- /lib/svg-path-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/svg-path-generator/HEAD/lib/svg-path-generator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/svg-path-generator/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/svg-path-generator/HEAD/test/test.js --------------------------------------------------------------------------------