mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
581 B
16 lines
581 B
10 years ago
|
'use strict';
|
||
|
|
||
9 years ago
|
var isArguments = require('es5-ext/function/is-arguments')
|
||
|
, isString = require('es5-ext/string/is-string')
|
||
10 years ago
|
, ArrayIterator = require('./array')
|
||
|
, StringIterator = require('./string')
|
||
|
, iterable = require('./valid-iterable')
|
||
|
, iteratorSymbol = require('es6-symbol').iterator;
|
||
|
|
||
|
module.exports = function (obj) {
|
||
|
if (typeof iterable(obj)[iteratorSymbol] === 'function') return obj[iteratorSymbol]();
|
||
9 years ago
|
if (isArguments(obj)) return new ArrayIterator(obj);
|
||
10 years ago
|
if (isString(obj)) return new StringIterator(obj);
|
||
|
return new ArrayIterator(obj);
|
||
|
};
|