Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ayc0/cssstringify

Transform JSSinCSS Object to plain CSS string
https://github.com/ayc0/cssstringify

Last synced: 9 days ago
JSON representation

Transform JSSinCSS Object to plain CSS string

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; '
```