diff --git a/stream/stream.js b/stream/stream.js index bac0c824..168eafbc 100644 --- a/stream/stream.js +++ b/stream/stream.js @@ -1,5 +1,7 @@ "use strict" +new function() { + var guid = 0, HALT = {} function createStream() { function stream() { @@ -115,3 +117,5 @@ createStream.HALT = HALT if (typeof module !== "undefined") module["exports"] = createStream else if (typeof window.m === "function" && !("stream" in window.m)) window.m.stream = createStream else window.m = {stream : createStream} + +}