Skip to content

Commit 8cbf566

Browse files
committed
chore: formatting code with prettier
1 parent edabe7d commit 8cbf566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/fs/guest-js/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ async function watchImmediate(
13241324

13251325
/**
13261326
* Get the size of a file or directory. For files, the `stat` functions can be used as well.
1327-
*
1327+
*
13281328
* If `path` is a directory, this function will recursively iterate over every file and every directory inside of `path` and therefore will be very time consuming if used on larger directories.
13291329
* @example
13301330
* ```typescript
@@ -1342,7 +1342,7 @@ async function size(path: string | URL): Promise<number> {
13421342
}
13431343

13441344
return await invoke('plugin:fs|size', {
1345-
path: path instanceof URL ? path.toString() : path,
1345+
path: path instanceof URL ? path.toString() : path
13461346
})
13471347
}
13481348

0 commit comments

Comments
 (0)