Skip to content

Commit

Permalink
fix: πŸ› don't assign null to .node property in Link
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Jul 12, 2019
1 parent b3e60b6 commit 4d7f439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.ts
Expand Up @@ -242,7 +242,7 @@ export class Link extends EventEmitter {
steps: string[] = [];

// "i-node" of this hard link.
node: Node = null;
node: Node;

// "i-node" number of the node.
ino: number = 0;
Expand Down

0 comments on commit 4d7f439

Please sign in to comment.