Skip to content

Commit

Permalink
style: πŸ’„ run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Jul 27, 2024
1 parent 78cf863 commit 7506bf0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Dir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ import type { IDir, IDirent, TCallback } from './node/types/misc';
export class Dir implements IDir {
private iteratorInfo: IterableIterator<[string, Link | undefined]>[] = [];

constructor(protected readonly link: Link, protected options: opts.IOpendirOptions) {
constructor(
protected readonly link: Link,
protected options: opts.IOpendirOptions,
) {
this.path = link.getParentPath();
this.iteratorInfo.push(link.children[Symbol.iterator]());
}
Expand Down

0 comments on commit 7506bf0

Please sign in to comment.