Skip to content

Commit 722a4f4

Browse files
Bundled output for commit f30cf0a [skip ci]
1 parent f30cf0a commit 722a4f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stream/stream.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Stream.combine = combine
77
Stream.scanMerge = scanMerge
88
Stream["fantasy-land/of"] = Stream
99

10-
let warnedHalt = false
10+
var warnedHalt = false
1111
Object.defineProperty(Stream, "HALT", {
1212
get: function() {
1313
warnedHalt && console.log("HALT is deprecated and has been renamed to SKIP");
@@ -52,7 +52,7 @@ function Stream(value) {
5252
return target
5353
}
5454

55-
let end
55+
var end
5656
function createEnd() {
5757
end = Stream()
5858
end.map(function(value) {
@@ -87,7 +87,7 @@ function combine(fn, streams) {
8787
? Stream(fn.apply(null, streams.concat([streams])))
8888
: Stream()
8989

90-
let changed = []
90+
var changed = []
9191

9292
streams.forEach(function(s) {
9393
s.map(function(value) {

0 commit comments

Comments
 (0)