├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── browser ├── index.html └── index.js ├── example.png ├── index.d.ts ├── index.js ├── index.ts ├── package.json ├── test.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.ts 2 | tsconfig.json 3 | /browser 4 | example.png 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/README.md -------------------------------------------------------------------------------- /browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/browser/index.html -------------------------------------------------------------------------------- /browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/browser/index.js -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/example.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/index.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmarshall/svg-path-outline/HEAD/tsconfig.json --------------------------------------------------------------------------------