From 5552ef31b16a13aaffc8edbe9f0d0745fe576291 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Tue, 15 Nov 2016 23:20:22 -0500 Subject: [PATCH] lint --- .eslintignore | 1 + stream/stream.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintignore b/.eslintignore index fd9fe176..a3726b93 100644 --- a/.eslintignore +++ b/.eslintignore @@ -7,3 +7,4 @@ tests test-utils ospec mithril.js +mithril.min.js diff --git a/stream/stream.js b/stream/stream.js index 4e27a35e..f1cc33df 100644 --- a/stream/stream.js +++ b/stream/stream.js @@ -1,6 +1,6 @@ "use strict" -var guid = 0, noop = function() {}, HALT = {} +var guid = 0, HALT = {} function createStream() { function stream() { if (arguments.length > 0 && arguments[0] !== HALT) updateStream(stream, arguments[0])