mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
35 lines
767 B
TypeScript
35 lines
767 B
TypeScript
|
// Loaded from https://deno.land/std@0.74.0/fs/exists.ts
|
||
|
|
||
|
|
||
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
/**
|
||
|
* Test whether or not the given path exists by checking with the file system
|
||
|
*/
|
||
|
export async function exists(filePath: string): Promise<boolean> {
|
||
|
try {
|
||
|
await Deno.lstat(filePath);
|
||
|
return true;
|
||
|
} catch (err) {
|
||
|
if (err instanceof Deno.errors.NotFound) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
throw err;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test whether or not the given path exists by checking with the file system
|
||
|
*/
|
||
|
export function existsSync(filePath: string): boolean {
|
||
|
try {
|
||
|
Deno.lstatSync(filePath);
|
||
|
return true;
|
||
|
} catch (err) {
|
||
|
if (err instanceof Deno.errors.NotFound) {
|
||
|
return false;
|
||
|
}
|
||
|
throw err;
|
||
|
}
|
||
|
}
|