Skip to content

Instantly share code, notes, and snippets.

View scroll's full-sized avatar
🏠
Working from home

Marin Petrov scroll

🏠
Working from home
View GitHub Profile
@scroll
scroll / Stream.js
Created August 28, 2011 21:57 — forked from orlinmp/Stream.js
javascript library: includes system.js and stream.js
//Defines Stream interface
//ServerStream Implements Stream interface to make easy communication with server through Key-Value pairs.
//constructor
function Stream()
{
this._length = 0;
this._position = -1;
};