├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── __tests__ │ └── toCSSandJSON.spec.ts ├── index.ts ├── isEmpty.ts ├── regex.ts ├── strAttr.ts ├── strNode.ts ├── toCSS.ts └── toJSON.ts ├── tsconfig.json └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/toCSSandJSON.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/__tests__/toCSSandJSON.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/isEmpty.ts -------------------------------------------------------------------------------- /src/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/regex.ts -------------------------------------------------------------------------------- /src/strAttr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/strAttr.ts -------------------------------------------------------------------------------- /src/strNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/strNode.ts -------------------------------------------------------------------------------- /src/toCSS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/toCSS.ts -------------------------------------------------------------------------------- /src/toJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/src/toJSON.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/CSSJSON/HEAD/webpack.config.js --------------------------------------------------------------------------------