Skip to content

Commit

Permalink
fix: πŸ› don't assign null to .buf property in Node
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Jul 12, 2019
1 parent 4d7f439 commit 00be0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.ts
Expand Up @@ -25,7 +25,7 @@ export class Node extends EventEmitter {
ctime = new Date();

// data: string = '';
buf: Buffer = null;
buf: Buffer;

perm = 0o666; // Permissions `chmod`, `fchmod`

Expand Down

0 comments on commit 00be0c2

Please sign in to comment.