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
"use strict";
|
|
|
|
var isArguments = require("es5-ext/function/is-arguments")
|
|
, isString = require("es5-ext/string/is-string")
|
|
, 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]();
|
|
if (isArguments(obj)) return new ArrayIterator(obj);
|
|
if (isString(obj)) return new StringIterator(obj);
|
|
return new ArrayIterator(obj);
|
|
};
|