From 9bfb6f593f5c89426d834b5efe57bb33667f43f7 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Fri, 12 Jul 2019 12:27:47 +1200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20don't=20assign=20`null`?= =?UTF-8?q?=20to=20`.symlink`=20property=20in=20`Node`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.ts b/src/node.ts index 07c89271..0b5f31ff 100644 --- a/src/node.ts +++ b/src/node.ts @@ -35,7 +35,7 @@ export class Node extends EventEmitter { nlink = 1; // Steps to another node, if this node is a symlink. - symlink: string[] = null; + symlink: string[]; constructor(ino: number, perm: number = 0o666) { super();