Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
resolve #261, explain args to callback to #del
Browse files Browse the repository at this point in the history
Per bug report, example crafted from test.
  • Loading branch information
bewest authored and rvagg committed Dec 25, 2014
1 parent e77bbd4 commit 2410aa3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,12 @@ LevelDB will by default fill the in-memory LRU Cache with data from a call to ge
<a name="del"></a>
### db.del(key[, options][, callback])
<code>del()</code> is the primary method for removing data from the store.
```js
db.del('foo', function hasError (err) {
console.error('ERROR', err);
throw err;
});
```

#### `options`

Expand Down

0 comments on commit 2410aa3

Please sign in to comment.