projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
d330997cb1d6af32b3403a96e191271fac71af35
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var isIterable = require('./is-iterable');
4
5
module.exports = function (value) {
6
if (!isIterable(value)) throw new TypeError(value + " is not iterable");
7
return value;
8
};