https://github.com/ayc0/cssstringify
Transform JSSinCSS Object to plain CSS string
https://github.com/ayc0/cssstringify
Last synced: 3 months ago
JSON representation
Transform JSSinCSS Object to plain CSS string
- Host: GitHub
- URL: https://github.com/ayc0/cssstringify
- Owner: Ayc0
- License: mit
- Created: 2018-02-28T18:19:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-28T18:38:32.000Z (over 7 years ago)
- Last Synced: 2025-03-15T17:38:52.250Z (4 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cssStringify
Transform CSSinJS Object to plain CSS string
```javascript
const stringify = require('css-in-js-stringify');> stringify({
color: 'red',
backgroundColor: 'green',
})
'color: red; background-color: green; '
```