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
- Host: GitHub
- URL: https://github.com/bredele/stylon
- Owner: bredele
- License: mit
- Created: 2016-05-01T16:58:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-01T17:10:37.000Z (about 10 years ago)
- Last Synced: 2025-03-17T02:40:23.446Z (over 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;'
```