1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/node_modules/level-concat-iterator
2022-07-15 11:08:01 -03:00
..
.travis.yml New updates and modules 2022-07-15 11:08:01 -03:00
CHANGELOG.md New updates and modules 2022-07-15 11:08:01 -03:00
CONTRIBUTORS.md New updates and modules 2022-07-15 11:08:01 -03:00
example.js New updates and modules 2022-07-15 11:08:01 -03:00
index.js New updates and modules 2022-07-15 11:08:01 -03:00
LICENSE.md New updates and modules 2022-07-15 11:08:01 -03:00
package.json New updates and modules 2022-07-15 11:08:01 -03:00
README.md New updates and modules 2022-07-15 11:08:01 -03:00
test.js New updates and modules 2022-07-15 11:08:01 -03:00
UPGRADING.md New updates and modules 2022-07-15 11:08:01 -03:00

level-concat-iterator

Concatenate items from an iterator into an array.

level badge npm Node version Travis Coverage Status JavaScript Style Guide npm Backers on Open Collective Sponsors on Open Collective

Usage

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

level('DB', function (err, db) {
  db.put('foo', 'bar', function (err) {
    concat(db.iterator(), function (err, data) {
      console.log(data)
    })
  })
})

If you are upgrading: please see UPGRADING.md.

API

concat(iterator, cb)

Takes an abstract-leveldown compatible iterator as first parameter and calls back with an array of keys and values. Calls back with an error if iterator.next(cb) or iterator.end(cb) errors.

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.

Donate

To sustain Level and its activities, become a backer or sponsor on Open Collective. Your logo or avatar will be displayed on our 28+ GitHub repositories, npm packages and (soon) our website. 💖

Backers

Open Collective backers

Sponsors

Open Collective sponsors

License

MIT © 2018-present Contributors.