mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
35 lines
690 B
TypeScript
35 lines
690 B
TypeScript
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
type ExitsCallback = (exists: boolean) => void;
|
||
|
|
||
|
/* Deprecated in node api */
|
||
|
|
||
|
export function exists(path: string, callback: ExitsCallback): void {
|
||
|
new Promise(async (resolve, reject) => {
|
||
|
try {
|
||
|
await Deno.lstat(path);
|
||
|
resolve();
|
||
|
} catch (err) {
|
||
|
reject(err);
|
||
|
}
|
||
|
})
|
||
|
.then(() => {
|
||
|
callback(true);
|
||
|
})
|
||
|
.catch(() => {
|
||
|
callback(false);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function existsSync(path: string): boolean {
|
||
|
try {
|
||
|
Deno.lstatSync(path);
|
||
|
return true;
|
||
|
} catch (err) {
|
||
|
if (err instanceof Deno.errors.NotFound) {
|
||
|
return false;
|
||
|
}
|
||
|
throw err;
|
||
|
}
|
||
|
}
|