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

https://github.com/bredele/stylon

JSON to DOM style attribute
https://github.com/bredele/stylon

Last synced: over 1 year ago
JSON representation

JSON to DOM style attribute

Awesome Lists containing this project

README

          

# stylon

JSON to DOM style attribute

## usage

```js
var styles = require('stylon');

styles({
top: 300 + 'px',
left: 100 + 'px'
});
//=> 'top:300px;left:100px;'
```