Bundled output for commit 2a9b3964ca [skip ci]

This commit is contained in:
Gandalf-the-Bot 2019-02-05 16:06:41 +00:00
parent 2a9b3964ca
commit de2e60acb3

View file

@ -10,7 +10,7 @@ Stream["fantasy-land/of"] = Stream
var warnedHalt = false
Object.defineProperty(Stream, "HALT", {
get: function() {
warnedHalt && console.log("HALT is deprecated and has been renamed to SKIP");
warnedHalt || console.log("HALT is deprecated and has been renamed to SKIP");
warnedHalt = true
return Stream.SKIP
}