Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: πŸ› don't assign null to ._steps property in FSWatcher
  • Loading branch information
G-Rath committed Jul 12, 2019
1 parent fd1a253 commit 0e94b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/volume.ts
Expand Up @@ -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;
Expand Down

0 comments on commit 0e94b9c

Please sign in to comment.