Convert JS object to CSS declarations
Built with β€οΈ by Tiaan and contributors
$ npm install --save obj-to-css
# OR
$ yarn add obj-to-css
const ToCss = require('obj-to-css')
const obj = {
'.hello': {
color: 'red'
},
'.foo': {
background: 'pink'
}
}
console.log(toCSS(obj)) // .hello{color:red}.foo{background:pink}
$ obj-to-css foo.json
# .hello{color:red}.foo{background:pink}
Contributions are welcome. Please open up an issue or create PR if you would like to help out.
Note: If editing the README, please conform to the standard-readme specification.
Licensed under the MIT License.