Merge branch 'next' into next

This commit is contained in:
Pierre-Yves Gérardy 2017-03-04 16:34:15 +01:00 committed by GitHub
commit 273d3d4740
2 changed files with 10 additions and 1 deletions

View file

@ -115,6 +115,7 @@ createStream.combine = combine
createStream.HALT = HALT
if (typeof module !== "undefined") module["exports"] = createStream
else window.stream = createStream
else if (typeof window.m === "function" && !("stream" in window.m)) window.m.stream = createStream
else window.m = {stream : createStream}
}