🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
270 B
JavaScript
Executable File
16 lines
270 B
JavaScript
Executable File
'use strict';
|
|
|
|
module.exports = function SymbolIterator() {
|
|
var _this = this;
|
|
|
|
var index = -1;
|
|
return {
|
|
next: function next() {
|
|
index += 1;
|
|
return {
|
|
value: _this.items[index],
|
|
done: index >= _this.items.length
|
|
};
|
|
}
|
|
};
|
|
}; |