js-util

Home > rc-js-util > _Iterator > emptyIterator

_Iterator.emptyIterator property

An iterator that is done.

Signature:

static emptyIterator: IterableIterator<any> & {
        result: {
            done: true;
            value: any;
        };
    };