projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ce908dd912959bfa86e1991f3ce53c059b3df03a
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var from = require('./from')
4
5
, isArray = Array.isArray;
6
7
module.exports = function (arrayLike) {
8
return isArray(arrayLike) ? arrayLike : from(arrayLike);
9
};