functional-data-structure/finger-tree

View on GitHub
src/0-core/_fast/fast-iterators/1-_EmptyGenerator.js

Summary

Maintainability
A
0 mins
Test Coverage
export function _EmptyGenerator() {}

_EmptyGenerator.prototype.next = function () {
    return {done: true};
};