From 0e94b9c83604fb040b9bb09a3fb3b4e5b6a234ed Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Fri, 12 Jul 2019 12:06:03 +1200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20don't=20assign=20`null`?= =?UTF-8?q?=20to=20`.=5Fsteps`=20property=20in=20`FSWatcher`?= 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 2fce84b2..a0bd8359 100644 --- a/src/volume.ts +++ b/src/volume.ts @@ -2492,7 +2492,7 @@ FsWriteStream.prototype.destroySoon = FsWriteStream.prototype.end; export class FSWatcher extends EventEmitter { _vol: Volume; _filename: string = ''; - _steps: string[] = null; + _steps: string[]; _filenameEncoded: TDataOut = ''; // _persistent: boolean = true; _recursive: boolean = false;