From 15405222841ee846210f1ae17351beef7c8dcc57 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Fri, 12 Jul 2019 10:58:18 +1200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20don't=20assign=20`null`?= =?UTF-8?q?=20to=20`StatWatcher.vol`=20property?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/volume.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volume.ts b/src/volume.ts index 28e625d5..f2e4bcc1 100644 --- a/src/volume.ts +++ b/src/volume.ts @@ -2131,7 +2131,7 @@ function emitStop(self) { } export class StatWatcher extends EventEmitter { - vol: Volume = null; + vol: Volume; filename: string; interval: number; timeoutRef?;