mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 09:44:08 +00:00

PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
15 lines
409 B
JavaScript
15 lines
409 B
JavaScript
'use strict';
|
|
|
|
module.exports = function () {
|
|
var arr = ['foo', 1], iterator, result;
|
|
if (typeof arr.values !== 'function') return false;
|
|
iterator = arr.values();
|
|
if (!iterator) return false;
|
|
if (typeof iterator.next !== 'function') return false;
|
|
result = iterator.next();
|
|
if (!result) return false;
|
|
if (result.value !== 'foo') return false;
|
|
if (result.done !== false) return false;
|
|
return true;
|
|
};
|