sequential-task-queue
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -162,4 +162,4 @@ /** | ||
off(evt: string, handler: Function): void; | ||
private emit(evt, ...args); | ||
private next(); | ||
protected emit(evt: string, ...args: any[]): void; | ||
protected next(): void; | ||
private cancelTask(task, reason?); | ||
@@ -166,0 +166,0 @@ private doneTask(task, error?); |
{ | ||
"name": "sequential-task-queue", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "FIFO task queue for node and the browser", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -196,2 +196,6 @@ # SequentialTaskQueue | ||
### 1.2.1 | ||
`next` and `emit` are now protected instead of private. | ||
### 1.2.0 | ||
@@ -198,0 +202,0 @@ |
23758
205