├── .gitignore ├── LICENSE ├── index.js ├── package.json ├── rgbToHexa.js ├── testTemplate.js └── valueFormatter.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/LICENSE -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/package.json -------------------------------------------------------------------------------- /rgbToHexa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/rgbToHexa.js -------------------------------------------------------------------------------- /testTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/testTemplate.js -------------------------------------------------------------------------------- /valueFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodymovin/lottie-to-svg/HEAD/valueFormatter.js --------------------------------------------------------------------------------