Skip to content

Commit 4585eec

Browse files
committed
style(events): apply code style
1 parent 7062c31 commit 4585eec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function observeFileEvents(
3333
options: string | ObserveFileEventsOptions
3434
): Observable<FileEvent> {
3535
const path = resolve(typeof options === "string" ? options : options.path);
36-
const recursive = typeof options === "object" ? options.recursive ?? false : false;
36+
const recursive = typeof options === "object" ? (options.recursive ?? false) : false;
3737
const ready = {event: "Ready", path, recursive} as const;
3838

3939
const events = new Observable<FileEvent>(subscriber => {

0 commit comments

Comments
 (0)