mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
|
"use strict";
|
||
|
|
||
|
var isIterable = require("./is-iterable");
|
||
|
|
||
|
module.exports = function (value) {
|
||
|
if (!isIterable(value)) throw new TypeError(value + " is not iterable");
|
||
|
return value;
|
||
|
};
|