Skip to content

Commit

Permalink
fix: πŸ› don't assign null to .node property in File
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Jul 12, 2019
1 parent 5d01713 commit d06201e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.ts
Expand Up @@ -363,7 +363,7 @@ export class File {
* Reference to a `Node`.
* @type {Node}
*/
node: Node = null;
node: Node;

/**
* A cursor/offset position in a file, where data will be written on write.
Expand Down

0 comments on commit d06201e

Please sign in to comment.