We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9799dfc commit e5fa471Copy full SHA for e5fa471
README.md
@@ -51,7 +51,7 @@ To enable a fallback storage for browsers that do not yet support Cache API, you
51
window.CacheApiDBFallback = function(store, options) {
52
this.get = function(key) { /* return key from store */ }
53
this.set = function(key,data,expire) { /* set key in store */ }
54
- this.det = function(key) { /* delete key from store */ }
+ this.del = function(key) { /* delete key from store */ }
55
this.prune = function() { /* cleanup database */ }
56
};
57
```
0 commit comments