Compare commits

..

No commits in common. "11a3b00c125e885df8abd228931fbd6c6b109573" and "d0a65f7f4fd4e783e6cebb822c5fab1fa90e01df" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/utils",
"version": "2.0.5",
"version": "2.0.2",
"description": "Different Utilities, that are not worth own packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@ -19,7 +19,6 @@
"typescript": "^3.3.3333"
},
"files": [
"src/",
"lib/",
"tsconfig.json",
"readme.md"

View File

@ -69,7 +69,6 @@ export default class Observable<T = any> {
this.subscriberCollect.forEach(cb => {
cb(this.events)
});
this.events = [];
this.timeout = undefined;
}, this.collect_intervall);
}