Browse Source

Remove reference to arguments which was unused and de-optimizes the constructor.

gh-pages
Matt Ranney 13 years ago
parent
commit
2fa2ffc438
  1. 2
      lib/queue.js

2
lib/queue.js

@ -5,7 +5,7 @@ var to_array = require("./to_array");
function Queue() {
this.tail = [];
this.head = to_array(arguments);
this.head = [];
this.offset = 0;
}

Loading…
Cancel
Save