Added notice of an edge case

This commit is contained in:
Joris 2021-04-16 20:41:54 +02:00 committed by Mark Robert Henderson
parent 9b086d9ee0
commit 83bbddaef6

2
API.md
View File

@ -390,6 +390,7 @@ Returns a `Promise` that resolves to the multihash of the entry as a `String`.
#### get(key)
Returns an `Array` with a single `Object` if key exists.
If it does not exist, this returns an empty array.
```javascript
const profile = db.get('shamb0t')
// [{ _id: 'shamb0t', name: 'shamb0t', followers: 500 }]
@ -399,6 +400,7 @@ Returns an `Array` with a single `Object` if key exists.
// [{ _id: 'shamb0t', name: 'shamb0t', followers: 500 }]
```
#### query(mapper)
Returns an `Array` of `Objects` based on the `mapper`.
```javascript