mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-17 04:58:26 +00:00
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
'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;
|
|
};
|