Skip to content

Commit

Permalink
events: improve removeListener() performance
Browse files Browse the repository at this point in the history
array.shift() seems to be faster than arrayClone() when the item
to remove is at the front (at least with V8 5.4).

PR-URL: nodejs#10572
Reviewed-By: Benjamin Gruenbaum <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Michael Dawson <[email protected]>
  • Loading branch information
mscdex authored and italoacasas committed Jan 19, 2017
1 parent 0466b59 commit 053fbb2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,8 @@ EventEmitter.prototype.removeListener =
} else {
delete events[type];
}
} else if (position === 0) {
list.shift();
} else {
spliceOne(list, position);
}
Expand Down

0 comments on commit 053fbb2

Please sign in to comment.