UNPKG
r-layout
Version:
latest (0.7.0)
0.7.0
0.6.1
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.1.1
0.1.0
Layout made simple. Screw CSS!
github.com/Zinggi/RLayout
Zinggi/RLayout
r-layout
/
src
/
layout
/
childrenUtilies.jsx
11 lines
(10 loc)
•
223 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
module
.
exports
= {
toArray
:
function
(
children
) {
var
childs = children;
if
(!
Array
.
isArray
(children)) { childs = [children]; }
return
childs; } };