feat: implement trash

This commit is contained in:
thecodrr
2020-02-06 16:46:23 +05:00
parent 90124ca43d
commit 1b53f967d8
8 changed files with 242 additions and 21 deletions

View File

@@ -50,6 +50,10 @@ export default class CachedCollection {
}
}
exists(id) {
return this.map.has(id);
}
getItem(id) {
return this.map.get(id);
}