First commit
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function () {
|
||||
var value, iterator = this.values(), item;
|
||||
while (true) {
|
||||
item = iterator.next();
|
||||
if (item.done) break;
|
||||
value = item.value;
|
||||
}
|
||||
return value;
|
||||
};
|
||||
Reference in New Issue
Block a user