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 1243c30 commit 5315703Copy full SHA for 5315703
inferno-v1.0.0-alpha7/src/store.es6.js
@@ -29,11 +29,6 @@ export class Store {
29
this.data = this.data.filter((e,i) => i!=idx);
30
return this;
31
}
32
- deleteNext(id) {
33
- const idx = this.data.findIndex(d => d.id==id);
34
- this.data = this.data.filter((e,i) => i!=idx+1);
35
- return this;
36
- }
37
run() {
38
this.data = this.buildData();
39
this.selected = undefined;
0 commit comments