├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── bin └── svgo ├── defaults.js ├── docs └── how-it-works │ ├── en.md │ ├── ko.md │ └── ru.md ├── examples ├── test.js └── test.svg ├── lib ├── css-tools.js ├── get-svgo-instance.js ├── optimize.js ├── svgo.js └── svgo │ ├── coa.js │ ├── config.js │ ├── css-class-list.js │ ├── css-select-adapter.js │ ├── css-style-declaration.js │ ├── js2svg.js │ ├── jsAPI.js │ ├── plugins.js │ ├── svg2js.js │ └── tools.js ├── logo.svg ├── package.json ├── plugins-list.js ├── plugins ├── _collections.js ├── _path.js ├── _transforms.js ├── addAttributesToSVGElement.js ├── addClassesToSVGElement.js ├── cleanupAttrs.js ├── cleanupEnableBackground.js ├── cleanupIDs.js ├── cleanupListOfValues.js ├── cleanupNumericValues.js ├── collapseGroups.js ├── convertColors.js ├── convertEllipseToCircle.js ├── convertPathData.js ├── convertShapeToPath.js ├── convertStyleToAttrs.js ├── convertTransform.js ├── inlineStyles.js ├── mergePaths.js ├── minifyStyles.js ├── moveElemsAttrsToGroup.js ├── moveGroupAttrsToElems.js ├── prefixIds.js ├── removeAttributesBySelector.js ├── removeAttrs.js ├── removeComments.js ├── removeDesc.js ├── removeDimensions.js ├── removeDoctype.js ├── removeEditorsNSData.js ├── removeElementsByAttr.js ├── removeEmptyAttrs.js ├── removeEmptyContainers.js ├── removeEmptyText.js ├── removeHiddenElems.js ├── removeMetadata.js ├── removeNonInheritableGroupAttrs.js ├── removeOffCanvasPaths.js ├── removeRasterImages.js ├── removeScriptElement.js ├── removeStyleElement.js ├── removeTitle.js ├── removeUnknownsAndDefaults.js ├── removeUnusedNS.js ├── removeUselessDefs.js ├── removeUselessStrokeAndFill.js ├── removeViewBox.js ├── removeXMLNS.js ├── removeXMLProcInst.js ├── reusePaths.js ├── sortAttrs.js └── sortDefsChildren.js └── test ├── coa ├── _index.js ├── test.svg ├── testFolderWithNoSvg │ └── test ├── testSvg │ ├── test.1.svg │ └── test.svg └── testSvgRecursively │ ├── depth-1 │ └── depth-2 │ │ ├── test.1.svg │ │ └── test.svg │ ├── test.1.svg │ └── test.svg ├── config └── _index.js ├── jsapi └── _index.js ├── mocha.opts ├── plugins ├── _index.js ├── addAttributesToSVGElement.01.svg ├── addAttributesToSVGElement.02.svg ├── addAttributesToSVGElement.03.svg ├── addClassesToSVGElement.01.svg ├── cleanupAttrs.01.svg ├── cleanupAttrs.02.svg ├── cleanupEnableBackground.01.svg ├── cleanupEnableBackground.02.svg ├── cleanupEnableBackground.03.svg ├── cleanupEnableBackground.04.svg ├── cleanupIDs.01.svg ├── cleanupIDs.02.svg ├── cleanupIDs.03.svg ├── cleanupIDs.04.svg ├── cleanupIDs.05.svg ├── cleanupIDs.06.svg ├── cleanupIDs.07.svg ├── cleanupIDs.08.svg ├── cleanupIDs.09.svg ├── cleanupIDs.10.svg ├── cleanupIDs.11.svg ├── cleanupIDs.12.svg ├── cleanupIDs.13.svg ├── cleanupIDs.14.svg ├── cleanupIDs.15.svg ├── cleanupIDs.16.svg ├── cleanupIDs.17.svg ├── cleanupIDs.18.svg ├── cleanupIDs.19.svg ├── cleanupIDs.20.svg ├── cleanupListOfValues.01.svg ├── cleanupListOfValues.02.svg ├── cleanupListOfValues.03.svg ├── cleanupNumericValues.01.svg ├── cleanupNumericValues.02.svg ├── collapseGroups.01.svg ├── collapseGroups.02.svg ├── collapseGroups.03.svg ├── collapseGroups.04.svg ├── collapseGroups.05.svg ├── collapseGroups.06.svg ├── collapseGroups.07.svg ├── collapseGroups.08.svg ├── collapseGroups.09.svg ├── collapseGroups.10.svg ├── collapseGroups.11.svg ├── collapseGroups.12.svg ├── collapseGroups.13.svg ├── collapseGroups.14.svg ├── collapseGroups.15.svg ├── collapseGroups.16.svg ├── convertColors.01.svg ├── convertColors.02.svg ├── convertColors.03.svg ├── convertColors.04.svg ├── convertEllipseToCircle.01.svg ├── convertPathData.01.svg ├── convertPathData.02.svg ├── convertPathData.03.svg ├── convertPathData.04.svg ├── convertPathData.05.svg ├── convertPathData.06.svg ├── convertPathData.07.svg ├── convertPathData.08.svg ├── convertPathData.09.svg ├── convertPathData.10.svg ├── convertPathData.11.svg ├── convertPathData.12.svg ├── convertPathData.13.svg ├── convertPathData.14.svg ├── convertPathData.15.svg ├── convertPathData.16.svg ├── convertPathData.17.svg ├── convertPathData.18.svg ├── convertPathData.19.svg ├── convertPathData.20.svg ├── convertShapeToPath.01.svg ├── convertShapeToPath.02.svg ├── convertShapeToPath.03.svg ├── convertShapeToPath.04.svg ├── convertStyleToAttrs.01.svg ├── convertStyleToAttrs.02.svg ├── convertStyleToAttrs.03.svg ├── convertStyleToAttrs.04.svg ├── convertStyleToAttrs.05.svg ├── convertTransform.01.svg ├── convertTransform.02.svg ├── convertTransform.03.svg ├── convertTransform.04.svg ├── inlineStyles.01.svg ├── inlineStyles.02.svg ├── inlineStyles.03.svg ├── inlineStyles.04.svg ├── inlineStyles.05.svg ├── inlineStyles.06.svg ├── inlineStyles.07.svg ├── inlineStyles.08.svg ├── inlineStyles.09.svg ├── inlineStyles.10.svg ├── inlineStyles.11.svg ├── inlineStyles.12.svg ├── inlineStyles.13.svg ├── inlineStyles.14.svg ├── inlineStyles.15.svg ├── inlineStyles.16.svg ├── inlineStyles.17.svg ├── inlineStyles.18.svg ├── inlineStyles.19.svg ├── mergePaths.01.svg ├── mergePaths.02.svg ├── mergePaths.03.svg ├── mergePaths.04.svg ├── minifyStyles.01.svg ├── minifyStyles.02.svg ├── minifyStyles.03.svg ├── minifyStyles.04.svg ├── minifyStyles.05.svg ├── minifyStyles.06.svg ├── minifyStyles.07.svg ├── minifyStyles.08.svg ├── minifyStyles.09.svg ├── minifyStyles.10.svg ├── moveElemsAttrsToGroup.01.svg ├── moveElemsAttrsToGroup.02.svg ├── moveElemsAttrsToGroup.03.svg ├── moveElemsAttrsToGroup.04.svg ├── moveElemsAttrsToGroup.05.svg ├── moveElemsAttrsToGroup.06.svg ├── moveElemsAttrsToGroup.07.svg ├── moveGroupAttrsToElems.01.svg ├── moveGroupAttrsToElems.02.svg ├── moveGroupAttrsToElems.03.svg ├── moveGroupAttrsToElems.04.svg ├── moveGroupAttrsToElems.05.svg ├── moveGroupAttrsToElems.06.svg ├── prefixIds.01.svg ├── prefixIds.02.svg ├── prefixIds.03.svg ├── prefixIds.04.svg ├── prefixIds.05.svg ├── prefixIds.06.svg ├── prefixIds.07.svg ├── prefixIds.08.svg ├── prefixIds.09.svg ├── prefixIds.10.svg ├── removeAttributesBySelector.01.svg ├── removeAttributesBySelector.02.svg ├── removeAttributesBySelector.03.svg ├── removeAttrs.01.svg ├── removeAttrs.02.svg ├── removeAttrs.03.svg ├── removeAttrs.04.svg ├── removeAttrs.05.svg ├── removeComments.01.svg ├── removeComments.02.svg ├── removeDesc.01.svg ├── removeDimensions.01.svg ├── removeDimensions.02.svg ├── removeDimensions.03.svg ├── removeDimensions.04.svg ├── removeDimensions.05.svg ├── removeDoctype.01.svg ├── removeEditorsNSData.01.svg ├── removeEditorsNSData.02.svg ├── removeElementsByAttr.01.svg ├── removeElementsByAttr.02.svg ├── removeElementsByAttr.03.svg ├── removeElementsByAttr.04.svg ├── removeElementsByAttr.05.svg ├── removeElementsByAttr.06.svg ├── removeEmptyAttrs.01.svg ├── removeEmptyContainers.01.svg ├── removeEmptyContainers.02.svg ├── removeEmptyContainers.03.svg ├── removeEmptyText.01.svg ├── removeEmptyText.02.svg ├── removeEmptyText.03.svg ├── removeHiddenElems.01.svg ├── removeHiddenElems.02.svg ├── removeHiddenElems.03.svg ├── removeHiddenElems.04.svg ├── removeHiddenElems.05.svg ├── removeHiddenElems.06.svg ├── removeHiddenElems.07.svg ├── removeHiddenElems.08.svg ├── removeHiddenElems.09.svg ├── removeHiddenElems.10.svg ├── removeMetadata.01.svg ├── removeNonInheritableGroupAttrs.01.svg ├── removeNonInheritableGroupAttrs.02.svg ├── removeOffCanvasPaths.01.svg ├── removeOffCanvasPaths.02.svg ├── removeOffCanvasPaths.03.svg ├── removeOffCanvasPaths.04.svg ├── removeOffCanvasPaths.05.svg ├── removeRasterImages.01.svg ├── removeRasterImages.02.svg ├── removeScriptElement.01.svg ├── removeStyleElement.01.svg ├── removeTitle.01.svg ├── removeUnknownsAndDefaults.01.svg ├── removeUnknownsAndDefaults.02.svg ├── removeUnknownsAndDefaults.03.svg ├── removeUnknownsAndDefaults.04.svg ├── removeUnknownsAndDefaults.05.svg ├── removeUnknownsAndDefaults.06.svg ├── removeUnknownsAndDefaults.07.svg ├── removeUnknownsAndDefaults.08.svg ├── removeUnknownsAndDefaults.09.svg ├── removeUnknownsAndDefaults.10.svg ├── removeUnknownsAndDefaults.11.svg ├── removeUnknownsAndDefaults.12.svg ├── removeUnknownsAndDefaults.13.svg ├── removeUnknownsAndDefaults.14.svg ├── removeUnusedNS.01.svg ├── removeUnusedNS.02.svg ├── removeUnusedNS.03.svg ├── removeUnusedNS.04.svg ├── removeUnusedNS.05.svg ├── removeUnusedNS.06.svg ├── removeUnusedNS.07.svg ├── removeUselessDefs.01.svg ├── removeUselessDefs.02.svg ├── removeUselessDefs.03.svg ├── removeUselessStrokeAndFill.01.svg ├── removeUselessStrokeAndFill.02.svg ├── removeUselessStrokeAndFill.02_.svg ├── removeUselessStrokeAndFill.03.svg ├── removeViewBox.01.svg ├── removeViewBox.02.svg ├── removeViewBox.03.svg ├── removeViewBox.04.svg ├── removeXMLProcInst.01.svg ├── removeXMLProcInst.02.svg ├── reusePaths.01.svg ├── reusePaths.02.svg ├── sortAttrs.01.svg ├── sortAttrs.02.svg └── sortDefsChildren.01.svg ├── svg2js ├── _index.js ├── test.bad.svg ├── test.entities.svg └── test.svg └── svgo ├── _index.js └── test.svg /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['airbnb-base'], 3 | }; 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/README.md -------------------------------------------------------------------------------- /bin/svgo: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/svgo/coa').run(); 4 | -------------------------------------------------------------------------------- /defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/defaults.js -------------------------------------------------------------------------------- /docs/how-it-works/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/docs/how-it-works/en.md -------------------------------------------------------------------------------- /docs/how-it-works/ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/docs/how-it-works/ko.md -------------------------------------------------------------------------------- /docs/how-it-works/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/docs/how-it-works/ru.md -------------------------------------------------------------------------------- /examples/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/examples/test.js -------------------------------------------------------------------------------- /examples/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/examples/test.svg -------------------------------------------------------------------------------- /lib/css-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/css-tools.js -------------------------------------------------------------------------------- /lib/get-svgo-instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/get-svgo-instance.js -------------------------------------------------------------------------------- /lib/optimize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/optimize.js -------------------------------------------------------------------------------- /lib/svgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo.js -------------------------------------------------------------------------------- /lib/svgo/coa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/coa.js -------------------------------------------------------------------------------- /lib/svgo/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/config.js -------------------------------------------------------------------------------- /lib/svgo/css-class-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/css-class-list.js -------------------------------------------------------------------------------- /lib/svgo/css-select-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/css-select-adapter.js -------------------------------------------------------------------------------- /lib/svgo/css-style-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/css-style-declaration.js -------------------------------------------------------------------------------- /lib/svgo/js2svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/js2svg.js -------------------------------------------------------------------------------- /lib/svgo/jsAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/jsAPI.js -------------------------------------------------------------------------------- /lib/svgo/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/plugins.js -------------------------------------------------------------------------------- /lib/svgo/svg2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/svg2js.js -------------------------------------------------------------------------------- /lib/svgo/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/lib/svgo/tools.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/package.json -------------------------------------------------------------------------------- /plugins-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins-list.js -------------------------------------------------------------------------------- /plugins/_collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/_collections.js -------------------------------------------------------------------------------- /plugins/_path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/_path.js -------------------------------------------------------------------------------- /plugins/_transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/_transforms.js -------------------------------------------------------------------------------- /plugins/addAttributesToSVGElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/addAttributesToSVGElement.js -------------------------------------------------------------------------------- /plugins/addClassesToSVGElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/addClassesToSVGElement.js -------------------------------------------------------------------------------- /plugins/cleanupAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/cleanupAttrs.js -------------------------------------------------------------------------------- /plugins/cleanupEnableBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/cleanupEnableBackground.js -------------------------------------------------------------------------------- /plugins/cleanupIDs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/cleanupIDs.js -------------------------------------------------------------------------------- /plugins/cleanupListOfValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/cleanupListOfValues.js -------------------------------------------------------------------------------- /plugins/cleanupNumericValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/cleanupNumericValues.js -------------------------------------------------------------------------------- /plugins/collapseGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/collapseGroups.js -------------------------------------------------------------------------------- /plugins/convertColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/convertColors.js -------------------------------------------------------------------------------- /plugins/convertEllipseToCircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/convertEllipseToCircle.js -------------------------------------------------------------------------------- /plugins/convertPathData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/convertPathData.js -------------------------------------------------------------------------------- /plugins/convertShapeToPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/convertShapeToPath.js -------------------------------------------------------------------------------- /plugins/convertStyleToAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/convertStyleToAttrs.js -------------------------------------------------------------------------------- /plugins/convertTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/convertTransform.js -------------------------------------------------------------------------------- /plugins/inlineStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/inlineStyles.js -------------------------------------------------------------------------------- /plugins/mergePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/mergePaths.js -------------------------------------------------------------------------------- /plugins/minifyStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/minifyStyles.js -------------------------------------------------------------------------------- /plugins/moveElemsAttrsToGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/moveElemsAttrsToGroup.js -------------------------------------------------------------------------------- /plugins/moveGroupAttrsToElems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/moveGroupAttrsToElems.js -------------------------------------------------------------------------------- /plugins/prefixIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/prefixIds.js -------------------------------------------------------------------------------- /plugins/removeAttributesBySelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeAttributesBySelector.js -------------------------------------------------------------------------------- /plugins/removeAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeAttrs.js -------------------------------------------------------------------------------- /plugins/removeComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeComments.js -------------------------------------------------------------------------------- /plugins/removeDesc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeDesc.js -------------------------------------------------------------------------------- /plugins/removeDimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeDimensions.js -------------------------------------------------------------------------------- /plugins/removeDoctype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeDoctype.js -------------------------------------------------------------------------------- /plugins/removeEditorsNSData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeEditorsNSData.js -------------------------------------------------------------------------------- /plugins/removeElementsByAttr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeElementsByAttr.js -------------------------------------------------------------------------------- /plugins/removeEmptyAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeEmptyAttrs.js -------------------------------------------------------------------------------- /plugins/removeEmptyContainers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeEmptyContainers.js -------------------------------------------------------------------------------- /plugins/removeEmptyText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeEmptyText.js -------------------------------------------------------------------------------- /plugins/removeHiddenElems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeHiddenElems.js -------------------------------------------------------------------------------- /plugins/removeMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeMetadata.js -------------------------------------------------------------------------------- /plugins/removeNonInheritableGroupAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeNonInheritableGroupAttrs.js -------------------------------------------------------------------------------- /plugins/removeOffCanvasPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeOffCanvasPaths.js -------------------------------------------------------------------------------- /plugins/removeRasterImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeRasterImages.js -------------------------------------------------------------------------------- /plugins/removeScriptElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeScriptElement.js -------------------------------------------------------------------------------- /plugins/removeStyleElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeStyleElement.js -------------------------------------------------------------------------------- /plugins/removeTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeTitle.js -------------------------------------------------------------------------------- /plugins/removeUnknownsAndDefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeUnknownsAndDefaults.js -------------------------------------------------------------------------------- /plugins/removeUnusedNS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeUnusedNS.js -------------------------------------------------------------------------------- /plugins/removeUselessDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeUselessDefs.js -------------------------------------------------------------------------------- /plugins/removeUselessStrokeAndFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeUselessStrokeAndFill.js -------------------------------------------------------------------------------- /plugins/removeViewBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeViewBox.js -------------------------------------------------------------------------------- /plugins/removeXMLNS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeXMLNS.js -------------------------------------------------------------------------------- /plugins/removeXMLProcInst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/removeXMLProcInst.js -------------------------------------------------------------------------------- /plugins/reusePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/reusePaths.js -------------------------------------------------------------------------------- /plugins/sortAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/sortAttrs.js -------------------------------------------------------------------------------- /plugins/sortDefsChildren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/plugins/sortDefsChildren.js -------------------------------------------------------------------------------- /test/coa/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/_index.js -------------------------------------------------------------------------------- /test/coa/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/test.svg -------------------------------------------------------------------------------- /test/coa/testFolderWithNoSvg/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/coa/testSvg/test.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/testSvg/test.1.svg -------------------------------------------------------------------------------- /test/coa/testSvg/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/testSvg/test.svg -------------------------------------------------------------------------------- /test/coa/testSvgRecursively/depth-1/depth-2/test.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/testSvgRecursively/depth-1/depth-2/test.1.svg -------------------------------------------------------------------------------- /test/coa/testSvgRecursively/depth-1/depth-2/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/testSvgRecursively/depth-1/depth-2/test.svg -------------------------------------------------------------------------------- /test/coa/testSvgRecursively/test.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/testSvgRecursively/test.1.svg -------------------------------------------------------------------------------- /test/coa/testSvgRecursively/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/coa/testSvgRecursively/test.svg -------------------------------------------------------------------------------- /test/config/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/config/_index.js -------------------------------------------------------------------------------- /test/jsapi/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/jsapi/_index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/plugins/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/_index.js -------------------------------------------------------------------------------- /test/plugins/addAttributesToSVGElement.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/addAttributesToSVGElement.01.svg -------------------------------------------------------------------------------- /test/plugins/addAttributesToSVGElement.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/addAttributesToSVGElement.02.svg -------------------------------------------------------------------------------- /test/plugins/addAttributesToSVGElement.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/addAttributesToSVGElement.03.svg -------------------------------------------------------------------------------- /test/plugins/addClassesToSVGElement.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/addClassesToSVGElement.01.svg -------------------------------------------------------------------------------- /test/plugins/cleanupAttrs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupAttrs.01.svg -------------------------------------------------------------------------------- /test/plugins/cleanupAttrs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupAttrs.02.svg -------------------------------------------------------------------------------- /test/plugins/cleanupEnableBackground.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupEnableBackground.01.svg -------------------------------------------------------------------------------- /test/plugins/cleanupEnableBackground.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupEnableBackground.02.svg -------------------------------------------------------------------------------- /test/plugins/cleanupEnableBackground.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupEnableBackground.03.svg -------------------------------------------------------------------------------- /test/plugins/cleanupEnableBackground.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupEnableBackground.04.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.01.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.02.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.03.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.04.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.05.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.06.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.07.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.08.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.09.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.10.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.11.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.12.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.13.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.14.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.15.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.16.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.17.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.18.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.19.svg -------------------------------------------------------------------------------- /test/plugins/cleanupIDs.20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupIDs.20.svg -------------------------------------------------------------------------------- /test/plugins/cleanupListOfValues.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupListOfValues.01.svg -------------------------------------------------------------------------------- /test/plugins/cleanupListOfValues.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupListOfValues.02.svg -------------------------------------------------------------------------------- /test/plugins/cleanupListOfValues.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupListOfValues.03.svg -------------------------------------------------------------------------------- /test/plugins/cleanupNumericValues.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupNumericValues.01.svg -------------------------------------------------------------------------------- /test/plugins/cleanupNumericValues.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/cleanupNumericValues.02.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.01.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.02.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.03.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.04.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.05.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.06.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.07.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.08.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.09.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.10.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.11.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.12.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.13.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.14.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.15.svg -------------------------------------------------------------------------------- /test/plugins/collapseGroups.16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/collapseGroups.16.svg -------------------------------------------------------------------------------- /test/plugins/convertColors.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertColors.01.svg -------------------------------------------------------------------------------- /test/plugins/convertColors.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertColors.02.svg -------------------------------------------------------------------------------- /test/plugins/convertColors.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertColors.03.svg -------------------------------------------------------------------------------- /test/plugins/convertColors.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertColors.04.svg -------------------------------------------------------------------------------- /test/plugins/convertEllipseToCircle.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertEllipseToCircle.01.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.01.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.02.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.03.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.04.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.05.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.06.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.07.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.08.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.09.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.10.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.11.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.12.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.13.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.14.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.15.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.16.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.17.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.18.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.19.svg -------------------------------------------------------------------------------- /test/plugins/convertPathData.20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertPathData.20.svg -------------------------------------------------------------------------------- /test/plugins/convertShapeToPath.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertShapeToPath.01.svg -------------------------------------------------------------------------------- /test/plugins/convertShapeToPath.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertShapeToPath.02.svg -------------------------------------------------------------------------------- /test/plugins/convertShapeToPath.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertShapeToPath.03.svg -------------------------------------------------------------------------------- /test/plugins/convertShapeToPath.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertShapeToPath.04.svg -------------------------------------------------------------------------------- /test/plugins/convertStyleToAttrs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertStyleToAttrs.01.svg -------------------------------------------------------------------------------- /test/plugins/convertStyleToAttrs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertStyleToAttrs.02.svg -------------------------------------------------------------------------------- /test/plugins/convertStyleToAttrs.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertStyleToAttrs.03.svg -------------------------------------------------------------------------------- /test/plugins/convertStyleToAttrs.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertStyleToAttrs.04.svg -------------------------------------------------------------------------------- /test/plugins/convertStyleToAttrs.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertStyleToAttrs.05.svg -------------------------------------------------------------------------------- /test/plugins/convertTransform.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertTransform.01.svg -------------------------------------------------------------------------------- /test/plugins/convertTransform.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertTransform.02.svg -------------------------------------------------------------------------------- /test/plugins/convertTransform.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertTransform.03.svg -------------------------------------------------------------------------------- /test/plugins/convertTransform.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/convertTransform.04.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.01.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.02.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.03.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.04.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.05.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.06.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.07.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.08.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.09.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.10.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.11.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.12.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.13.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.14.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.15.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.16.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.17.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.18.svg -------------------------------------------------------------------------------- /test/plugins/inlineStyles.19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/inlineStyles.19.svg -------------------------------------------------------------------------------- /test/plugins/mergePaths.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/mergePaths.01.svg -------------------------------------------------------------------------------- /test/plugins/mergePaths.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/mergePaths.02.svg -------------------------------------------------------------------------------- /test/plugins/mergePaths.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/mergePaths.03.svg -------------------------------------------------------------------------------- /test/plugins/mergePaths.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/mergePaths.04.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.01.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.02.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.03.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.04.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.05.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.06.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.07.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.08.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.09.svg -------------------------------------------------------------------------------- /test/plugins/minifyStyles.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/minifyStyles.10.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.01.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.02.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.03.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.04.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.05.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.06.svg -------------------------------------------------------------------------------- /test/plugins/moveElemsAttrsToGroup.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveElemsAttrsToGroup.07.svg -------------------------------------------------------------------------------- /test/plugins/moveGroupAttrsToElems.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveGroupAttrsToElems.01.svg -------------------------------------------------------------------------------- /test/plugins/moveGroupAttrsToElems.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveGroupAttrsToElems.02.svg -------------------------------------------------------------------------------- /test/plugins/moveGroupAttrsToElems.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveGroupAttrsToElems.03.svg -------------------------------------------------------------------------------- /test/plugins/moveGroupAttrsToElems.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveGroupAttrsToElems.04.svg -------------------------------------------------------------------------------- /test/plugins/moveGroupAttrsToElems.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveGroupAttrsToElems.05.svg -------------------------------------------------------------------------------- /test/plugins/moveGroupAttrsToElems.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/moveGroupAttrsToElems.06.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.01.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.02.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.03.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.04.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.05.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.06.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.07.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.08.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.09.svg -------------------------------------------------------------------------------- /test/plugins/prefixIds.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/prefixIds.10.svg -------------------------------------------------------------------------------- /test/plugins/removeAttributesBySelector.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttributesBySelector.01.svg -------------------------------------------------------------------------------- /test/plugins/removeAttributesBySelector.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttributesBySelector.02.svg -------------------------------------------------------------------------------- /test/plugins/removeAttributesBySelector.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttributesBySelector.03.svg -------------------------------------------------------------------------------- /test/plugins/removeAttrs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttrs.01.svg -------------------------------------------------------------------------------- /test/plugins/removeAttrs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttrs.02.svg -------------------------------------------------------------------------------- /test/plugins/removeAttrs.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttrs.03.svg -------------------------------------------------------------------------------- /test/plugins/removeAttrs.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttrs.04.svg -------------------------------------------------------------------------------- /test/plugins/removeAttrs.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeAttrs.05.svg -------------------------------------------------------------------------------- /test/plugins/removeComments.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeComments.01.svg -------------------------------------------------------------------------------- /test/plugins/removeComments.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeComments.02.svg -------------------------------------------------------------------------------- /test/plugins/removeDesc.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDesc.01.svg -------------------------------------------------------------------------------- /test/plugins/removeDimensions.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDimensions.01.svg -------------------------------------------------------------------------------- /test/plugins/removeDimensions.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDimensions.02.svg -------------------------------------------------------------------------------- /test/plugins/removeDimensions.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDimensions.03.svg -------------------------------------------------------------------------------- /test/plugins/removeDimensions.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDimensions.04.svg -------------------------------------------------------------------------------- /test/plugins/removeDimensions.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDimensions.05.svg -------------------------------------------------------------------------------- /test/plugins/removeDoctype.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeDoctype.01.svg -------------------------------------------------------------------------------- /test/plugins/removeEditorsNSData.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEditorsNSData.01.svg -------------------------------------------------------------------------------- /test/plugins/removeEditorsNSData.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEditorsNSData.02.svg -------------------------------------------------------------------------------- /test/plugins/removeElementsByAttr.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeElementsByAttr.01.svg -------------------------------------------------------------------------------- /test/plugins/removeElementsByAttr.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeElementsByAttr.02.svg -------------------------------------------------------------------------------- /test/plugins/removeElementsByAttr.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeElementsByAttr.03.svg -------------------------------------------------------------------------------- /test/plugins/removeElementsByAttr.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeElementsByAttr.04.svg -------------------------------------------------------------------------------- /test/plugins/removeElementsByAttr.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeElementsByAttr.05.svg -------------------------------------------------------------------------------- /test/plugins/removeElementsByAttr.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeElementsByAttr.06.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyAttrs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyAttrs.01.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyContainers.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyContainers.01.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyContainers.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyContainers.02.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyContainers.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyContainers.03.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyText.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyText.01.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyText.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyText.02.svg -------------------------------------------------------------------------------- /test/plugins/removeEmptyText.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeEmptyText.03.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.01.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.02.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.03.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.04.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.05.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.06.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.07.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.08.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.09.svg -------------------------------------------------------------------------------- /test/plugins/removeHiddenElems.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeHiddenElems.10.svg -------------------------------------------------------------------------------- /test/plugins/removeMetadata.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeMetadata.01.svg -------------------------------------------------------------------------------- /test/plugins/removeNonInheritableGroupAttrs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeNonInheritableGroupAttrs.01.svg -------------------------------------------------------------------------------- /test/plugins/removeNonInheritableGroupAttrs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeNonInheritableGroupAttrs.02.svg -------------------------------------------------------------------------------- /test/plugins/removeOffCanvasPaths.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeOffCanvasPaths.01.svg -------------------------------------------------------------------------------- /test/plugins/removeOffCanvasPaths.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeOffCanvasPaths.02.svg -------------------------------------------------------------------------------- /test/plugins/removeOffCanvasPaths.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeOffCanvasPaths.03.svg -------------------------------------------------------------------------------- /test/plugins/removeOffCanvasPaths.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeOffCanvasPaths.04.svg -------------------------------------------------------------------------------- /test/plugins/removeOffCanvasPaths.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeOffCanvasPaths.05.svg -------------------------------------------------------------------------------- /test/plugins/removeRasterImages.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeRasterImages.01.svg -------------------------------------------------------------------------------- /test/plugins/removeRasterImages.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeRasterImages.02.svg -------------------------------------------------------------------------------- /test/plugins/removeScriptElement.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeScriptElement.01.svg -------------------------------------------------------------------------------- /test/plugins/removeStyleElement.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeStyleElement.01.svg -------------------------------------------------------------------------------- /test/plugins/removeTitle.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeTitle.01.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.01.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.02.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.03.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.04.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.05.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.06.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.07.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.08.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.09.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.10.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.11.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.12.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.13.svg -------------------------------------------------------------------------------- /test/plugins/removeUnknownsAndDefaults.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnknownsAndDefaults.14.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.01.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.02.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.03.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.04.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.05.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.06.svg -------------------------------------------------------------------------------- /test/plugins/removeUnusedNS.07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUnusedNS.07.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessDefs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessDefs.01.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessDefs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessDefs.02.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessDefs.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessDefs.03.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessStrokeAndFill.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessStrokeAndFill.01.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessStrokeAndFill.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessStrokeAndFill.02.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessStrokeAndFill.02_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessStrokeAndFill.02_.svg -------------------------------------------------------------------------------- /test/plugins/removeUselessStrokeAndFill.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeUselessStrokeAndFill.03.svg -------------------------------------------------------------------------------- /test/plugins/removeViewBox.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeViewBox.01.svg -------------------------------------------------------------------------------- /test/plugins/removeViewBox.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeViewBox.02.svg -------------------------------------------------------------------------------- /test/plugins/removeViewBox.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeViewBox.03.svg -------------------------------------------------------------------------------- /test/plugins/removeViewBox.04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeViewBox.04.svg -------------------------------------------------------------------------------- /test/plugins/removeXMLProcInst.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeXMLProcInst.01.svg -------------------------------------------------------------------------------- /test/plugins/removeXMLProcInst.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/removeXMLProcInst.02.svg -------------------------------------------------------------------------------- /test/plugins/reusePaths.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/reusePaths.01.svg -------------------------------------------------------------------------------- /test/plugins/reusePaths.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/reusePaths.02.svg -------------------------------------------------------------------------------- /test/plugins/sortAttrs.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/sortAttrs.01.svg -------------------------------------------------------------------------------- /test/plugins/sortAttrs.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/sortAttrs.02.svg -------------------------------------------------------------------------------- /test/plugins/sortDefsChildren.01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/plugins/sortDefsChildren.01.svg -------------------------------------------------------------------------------- /test/svg2js/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/svg2js/_index.js -------------------------------------------------------------------------------- /test/svg2js/test.bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/svg2js/test.bad.svg -------------------------------------------------------------------------------- /test/svg2js/test.entities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/svg2js/test.entities.svg -------------------------------------------------------------------------------- /test/svg2js/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/svg2js/test.svg -------------------------------------------------------------------------------- /test/svgo/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/svgo/_index.js -------------------------------------------------------------------------------- /test/svgo/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/svgo-browser/HEAD/test/svgo/test.svg --------------------------------------------------------------------------------