aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/modules/core.get-iterator.js
blob: c292e1ab19040e8cf2925b7b3d6063c8af63f7c6 (plain)
1
2
3
4
5
6
7
var anObject = require('./_an-object')
  , get      = require('./core.get-iterator-method');
module.exports = require('./_core').getIterator = function(it){
  var iterFn = get(it);
  if(typeof iterFn != 'function')throw TypeError(it + ' is not iterable!');
  return anObject(iterFn.call(it));
};