npm.io
1.0.0 • Published 8 years ago

empty-iterator

Licence
MIT
Version
1.0.0
Deps
0
Size
2 kB
Vulns
0
Weekly
0

empty-iterator

Creates an iterator that finishes immediately.

Installation

Requires Node.js 4.0.0 or above.

npm i empty-iterator

API

The module exports a single function with no parameters. Each time it is called, it creates and returns a new empty iterator.

Example

const emptyIterator = require('empty-iterator')

emptyIterator().next().done // true

Keywords