We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f30cf0a commit 722a4f4Copy full SHA for 722a4f4
stream/stream.mjs
@@ -7,7 +7,7 @@ Stream.combine = combine
7
Stream.scanMerge = scanMerge
8
Stream["fantasy-land/of"] = Stream
9
10
-let warnedHalt = false
+var warnedHalt = false
11
Object.defineProperty(Stream, "HALT", {
12
get: function() {
13
warnedHalt && console.log("HALT is deprecated and has been renamed to SKIP");
@@ -52,7 +52,7 @@ function Stream(value) {
52
return target
53
}
54
55
- let end
+ var end
56
function createEnd() {
57
end = Stream()
58
end.map(function(value) {
@@ -87,7 +87,7 @@ function combine(fn, streams) {
87
? Stream(fn.apply(null, streams.concat([streams])))
88
: Stream()
89
90
- let changed = []
+ var changed = []
91
92
streams.forEach(function(s) {
93
s.map(function(value) {
0 commit comments