summaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/modules/core.get-iterator.js
blob: 7290904a6027dde957594d03bae7d5bf1fe6bd15 (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));
};