mirror of
https://github.com/wishthis/wishthis.git
synced 2026-04-18 05:28:43 -04: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;
|
|
};
|