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.
![]() |
1 week ago | |
---|---|---|
.. | ||
.github | 1 week ago | |
test | 1 week ago | |
.eslintrc | 1 week ago | |
.nycrc | 1 week ago | |
CHANGELOG.md | 1 week ago | |
LICENSE | 1 week ago | |
README.md | 1 week ago | |
index.d.ts | 1 week ago | |
index.js | 1 week ago | |
package.json | 1 week ago | |
tsconfig.json | 1 week ago |
README.md
stop-iteration-iterator 
Firefox 17-26 iterators throw a StopIteration object to indicate "done". This normalizes it.
Usage
var stopIterationIterator = require('stop-iteration-iterator');
var s = new Set([1, 2]);
var iterator = stopIterationIterator(s.keys());
iterator.next(); // { done: false, value: 1 }
Tests
Simply clone the repo, npm install
, and run npm test