UNPKG
stylon
Version:
latest (0.0.1)
0.0.1
JSON to DOM style attribute
github.com/bredele/stylon
bredele/stylon
stylon
/
README.md
16 lines
(11 loc)
•
172 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# stylon
JSON to DOM style attribute
## usage
```js
var
styles =
require
(
'stylon'
);
styles
({
top
:
300
+
'px'
,
left
:
100
+
'px'
});
//=> 'top:300px;left:100px;'
```