UNPKG
mana-common
Version:
latest (0.3.2)
next (0.2.2-next.0)
0.3.2
0.3.1
0.3.0
0.2.2
0.2.2-next.0
0.2.0
0.1.0
0.0.1
Common utils for mana
mana-common
/
lib
/
types-util.js
14 lines
(11 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
toArray
= toArray;
function
toArray
(
v
) {
if
(
Array
.
isArray
(v)) {
return
v; }
return
[v]; }