|
18 | 18 |
|
19 | 19 | - [Introduction](#introduction) |
20 | 20 | - [Supported Platforms](#supported-platforms) |
| 21 | + - [Notes](#notes) |
21 | 22 | - [API](#api) |
| 23 | + - [`db = leveldown(location)`](#db--leveldownlocation) |
| 24 | + - [`db.open([options, ]callback)`](#dbopenoptions-callback) |
| 25 | + - [`options`](#options) |
| 26 | + - [`db.close(callback)`](#dbclosecallback) |
| 27 | + - [`db.put(key, value[, options], callback)`](#dbputkey-value-options-callback) |
| 28 | + - [`options`](#options-1) |
| 29 | + - [`db.get(key[, options], callback)`](#dbgetkey-options-callback) |
| 30 | + - [`options`](#options-2) |
| 31 | + - [`db.del(key[, options], callback)`](#dbdelkey-options-callback) |
| 32 | + - [`options`](#options-3) |
| 33 | + - [`db.batch(operations[, options], callback)` _(array form)_](#dbbatchoperations-options-callback-array-form) |
| 34 | + - [`db.batch()` _(chained form)_](#dbbatch-chained-form) |
| 35 | + - [`db.approximateSize(start, end, callback)`](#dbapproximatesizestart-end-callback) |
| 36 | + - [`db.compactRange(start, end, callback)`](#dbcompactrangestart-end-callback) |
| 37 | + - [`db.getProperty(property)`](#dbgetpropertyproperty) |
| 38 | + - [`db.iterator([options])`](#dbiteratoroptions) |
| 39 | + - [`db.clear([options, ]callback)`](#dbclearoptions-callback) |
| 40 | + - [`chainedBatch`](#chainedbatch) |
| 41 | + - [`chainedBatch.put(key, value)`](#chainedbatchputkey-value) |
| 42 | + - [`chainedBatch.del(key)`](#chainedbatchdelkey) |
| 43 | + - [`chainedBatch.clear()`](#chainedbatchclear) |
| 44 | + - [`chainedBatch.write([options, ]callback)`](#chainedbatchwriteoptions-callback) |
| 45 | + - [`chainedBatch.db`](#chainedbatchdb) |
| 46 | + - [`iterator`](#iterator) |
| 47 | + - [`iterator.next(callback)`](#iteratornextcallback) |
| 48 | + - [`iterator.seek(key)`](#iteratorseekkey) |
| 49 | + - [`iterator.end(callback)`](#iteratorendcallback) |
| 50 | + - [`iterator.db`](#iteratordb) |
| 51 | + - [`leveldown.destroy(location, callback)`](#leveldowndestroylocation-callback) |
| 52 | + - [`leveldown.repair(location, callback)`](#leveldownrepairlocation-callback) |
22 | 53 | - [Safety](#safety) |
| 54 | + - [Database State](#database-state) |
23 | 55 | - [Snapshots](#snapshots) |
24 | 56 | - [Getting Support](#getting-support) |
25 | 57 | - [Contributing](#contributing) |
| 58 | + - [Git Submodules](#git-submodules) |
| 59 | + - [Publishing](#publishing) |
26 | 60 | - [Donate](#donate) |
| 61 | + - [Backers](#backers) |
| 62 | + - [Sponsors](#sponsors) |
27 | 63 | - [License](#license) |
28 | 64 |
|
29 | 65 | </details> |
|
0 commit comments