Skip to content

Instantly share code, notes, and snippets.

View mattneary's full-sized avatar

Matt Neary mattneary

View GitHub Profile
@mattneary
mattneary / index.js
Created December 18, 2012 00:08 — forked from anonymous/index.js
var Queue = function(parts) {
var index = 0;
this.read = function() {
var part = parts[index];
index++;
return part;
};
this.next = function() {
var thiz = this;