diff --git a/lib/queue.js b/lib/queue.js index 5cc3c429f2..61587b4e51 100644 --- a/lib/queue.js +++ b/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; }