aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/iterable/validate.js
blob: 94a91c471044e64c5317fc63f6478576cbd7420b (plain)
1
2
3
4
5
6
7
8
"use strict";

var is = require("./is");

module.exports = function (value) {
	if (is(value)) return value;
	throw new TypeError(value + " is not an iterable or array-like");
};