We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b6816 commit bb6651fCopy full SHA for bb6651f
denops/ddc-sources/file.ts
@@ -31,7 +31,7 @@ type FindPoint = {
31
32
const existsDir = async (filePath: string): Promise<boolean> => {
33
try {
34
- return (await Deno.lstat(filePath)).isDirectory;
+ return (await Deno.stat(filePath)).isDirectory;
35
} catch (_e: unknown) {
36
// Should not care about error.
37
// https://github.com/denoland/deno_std/issues/1216
0 commit comments