blob: 1be6d7fcd96e449737b12ba6602d9451cb2f71db [file] [log] [blame]
'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");
};