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
469 B
16 lines
469 B
"use strict";
|
|
|
|
module.exports = function () {
|
|
var arr = [1, "foo"], iterator, result;
|
|
if (typeof arr.entries !== "function") return false;
|
|
iterator = arr.entries();
|
|
if (!iterator) return false;
|
|
if (typeof iterator.next !== "function") return false;
|
|
result = iterator.next();
|
|
if (!result || !result.value) return false;
|
|
if (result.value[0] !== 0) return false;
|
|
if (result.value[1] !== 1) return false;
|
|
if (result.done !== false) return false;
|
|
return true;
|
|
};
|