|
14 | 14 | [](https://github.com/Level/community/issues) |
15 | 15 | [](https://opencollective.com/level) |
16 | 16 |
|
17 | | -## Table of Contents |
18 | | - |
19 | | -<details><summary>Click to expand</summary> |
20 | | - |
21 | | -- [Usage](#usage) |
22 | | -- [Install](#install) |
23 | | -- [Supported Platforms](#supported-platforms) |
24 | | -- [API](#api) |
25 | | - - [`db = new Level(location[, options])`](#db--new-levellocation-options) |
26 | | - - [`db.status`](#dbstatus) |
27 | | - - [`db.open([callback])`](#dbopencallback) |
28 | | - - [`db.close([callback])`](#dbclosecallback) |
29 | | - - [`db.supports`](#dbsupports) |
30 | | - - [`db.get(key[, options][, callback])`](#dbgetkey-options-callback) |
31 | | - - [`db.getMany(keys[, options][, callback])`](#dbgetmanykeys-options-callback) |
32 | | - - [`db.put(key, value[, options][, callback])`](#dbputkey-value-options-callback) |
33 | | - - [`db.del(key[, options][, callback])`](#dbdelkey-options-callback) |
34 | | - - [`db.batch(operations[, options][, callback])`](#dbbatchoperations-options-callback) |
35 | | - - [`chainedBatch = db.batch()`](#chainedbatch--dbbatch) |
36 | | - - [`iterator = db.iterator([options])`](#iterator--dbiteratoroptions) |
37 | | - - [`keyIterator = db.keys([options])`](#keyiterator--dbkeysoptions) |
38 | | - - [`valueIterator = db.values([options])`](#valueiterator--dbvaluesoptions) |
39 | | - - [`db.clear([options][, callback])`](#dbclearoptions-callback) |
40 | | - - [`sublevel = db.sublevel(name[, options])`](#sublevel--dbsublevelname-options) |
41 | | - - [`chainedBatch`](#chainedbatch) |
42 | | - - [`chainedBatch.put(key, value[, options])`](#chainedbatchputkey-value-options) |
43 | | - - [`chainedBatch.del(key[, options])`](#chainedbatchdelkey-options) |
44 | | - - [`chainedBatch.clear()`](#chainedbatchclear) |
45 | | - - [`chainedBatch.write([options][, callback])`](#chainedbatchwriteoptions-callback) |
46 | | - - [`chainedBatch.close([callback])`](#chainedbatchclosecallback) |
47 | | - - [`chainedBatch.length`](#chainedbatchlength) |
48 | | - - [`chainedBatch.db`](#chainedbatchdb) |
49 | | - - [`iterator`](#iterator) |
50 | | - - [`for await...of iterator`](#for-awaitof-iterator) |
51 | | - - [`iterator.next([callback])`](#iteratornextcallback) |
52 | | - - [`iterator.nextv(size[, options][, callback])`](#iteratornextvsize-options-callback) |
53 | | - - [`iterator.all([options][, callback])`](#iteratoralloptions-callback) |
54 | | - - [`iterator.seek(target[, options])`](#iteratorseektarget-options) |
55 | | - - [`iterator.close([callback])`](#iteratorclosecallback) |
56 | | - - [`iterator.db`](#iteratordb) |
57 | | - - [`iterator.count`](#iteratorcount) |
58 | | - - [`iterator.limit`](#iteratorlimit) |
59 | | - - [`keyIterator`](#keyiterator) |
60 | | - - [`valueIterator`](#valueiterator) |
61 | | - - [`sublevel`](#sublevel) |
62 | | - - [`sublevel.prefix`](#sublevelprefix) |
63 | | - - [`sublevel.db`](#subleveldb) |
64 | | -- [Contributing](#contributing) |
65 | | -- [Donate](#donate) |
66 | | -- [License](#license) |
67 | | - |
68 | | -</details> |
69 | | - |
70 | 17 | ## Usage |
71 | 18 |
|
72 | 19 | _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md)._ |
|
0 commit comments