Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
/ concat-iterator Public archive

Superseded by abstract-level. Concatenate entries from an iterator into an array.

License

Notifications You must be signed in to change notification settings

Level/concat-iterator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

level-concat-iterator

Superseded by abstract-level. Please see Frequently Asked Questions.

Usage

const concat = require('level-concat-iterator')
const level = require('level')

const db = level('./db')

db.put('foo', 'bar', function (err) {
  if (err) throw err

  concat(db.iterator(), function (err, entries) {
    if (err) throw err

    // [{ key: 'foo', value: 'bar' }]
    console.log(entries)
  })
})

With promises:

await db.put('foo', 'bar')
const entries = await concat(db.iterator())

If you are upgrading: please see UPGRADING.md.

API

concat(iterator[, callback])

Takes an abstract-leveldown compatible iterator as first parameter and calls the callback with an array of entries, where each entry is an object in the form { key, value }. Calls the callback with an error if iterator.next() or iterator.end() errors. If no callback is provided, a promise is returned.

Contributing

Level/concat-iterator is an OPEN Open Source Project. This means that:

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

See the Contribution Guide for more details.

License

MIT

About

Superseded by abstract-level. Concatenate entries from an iterator into an array.

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project

Contributors 4

  •  
  •  
  •  
  •