mirror of
https://github.com/denoland/deno.git
synced 2025-10-01 14:41:15 +00:00
fix(std/node): Stop callbacks being called twice when callback throws error (#8867)
This commit is contained in:
parent
f9949a3170
commit
06bd692e5c
46 changed files with 603 additions and 178 deletions
|
@ -10,11 +10,7 @@ type ExitsCallback = (exists: boolean) => void;
|
|||
*/
|
||||
export function exists(path: string | URL, callback: ExitsCallback): void {
|
||||
path = path instanceof URL ? fromFileUrl(path) : path;
|
||||
Deno.lstat(path)
|
||||
.then(() => {
|
||||
callback(true);
|
||||
})
|
||||
.catch(() => callback(false));
|
||||
Deno.lstat(path).then(() => callback(true), () => callback(false));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue