summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext/iterable/validate.js
blob: 1be6d7fcd96e449737b12ba6602d9451cb2f71db (plain)
1
2
3
4
5
6
7
8
'use strict';

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

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