We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee232f0 commit f30cf0aCopy full SHA for f30cf0a
stream/stream.js
@@ -10,7 +10,7 @@ Stream.combine = combine
10
Stream.scanMerge = scanMerge
11
Stream["fantasy-land/of"] = Stream
12
13
-let warnedHalt = false
+var warnedHalt = false
14
Object.defineProperty(Stream, "HALT", {
15
get: function() {
16
warnedHalt && console.log("HALT is deprecated and has been renamed to SKIP");
@@ -55,7 +55,7 @@ function Stream(value) {
55
return target
56
}
57
58
- let end
+ var end
59
function createEnd() {
60
end = Stream()
61
end.map(function(value) {
@@ -90,7 +90,7 @@ function combine(fn, streams) {
90
? Stream(fn.apply(null, streams.concat([streams])))
91
: Stream()
92
93
- let changed = []
+ var changed = []
94
95
streams.forEach(function(s) {
96
s.map(function(value) {
0 commit comments