From bc21be088047a5c9a862249136ad09494e2a84a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Yves=20G=C3=A9rardy?= Date: Tue, 11 Jul 2017 09:39:46 +0200 Subject: [PATCH] Move "use strict" directive inside the stream IIFE #1831 --- stream/stream.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stream/stream.js b/stream/stream.js index 18c7e608..fd2dcffb 100644 --- a/stream/stream.js +++ b/stream/stream.js @@ -1,6 +1,7 @@ -"use strict" - +/* eslint-disable */ ;(function() { +"use strict" +/* eslint-enable */ var guid = 0, HALT = {} function createStream() {