We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2f2e9 commit 1c49bc8Copy full SHA for 1c49bc8
readme.md
@@ -34,6 +34,11 @@ fs.createReadStream('/tmp/somefile.txt')
34
store.createReadStream({ key: 'somefile.txt' })
35
.pipe(fs.createWriteStream('/tmp/somefile.txt'));
36
37
+// remove
38
+store.remove({ key: 'somefile.txt' }, function (err) {
39
+ // ...
40
+});
41
+
42
// exists
43
store.exists({ key: 'somefile.txt' }, function (err, exists) {
44
// ...
0 commit comments