Merge branch 'next' into strict-mode
This commit is contained in:
commit
934e0ac55e
19 changed files with 316 additions and 537 deletions
|
|
@ -1,5 +1,7 @@
|
|||
"use strict"
|
||||
|
||||
;(function() {
|
||||
|
||||
var guid = 0, HALT = {}
|
||||
function createStream() {
|
||||
function stream() {
|
||||
|
|
@ -113,4 +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}
|
||||
|
||||
}());
|
||||
Loading…
Add table
Add a link
Reference in a new issue