mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
35 lines
760 B
TypeScript
35 lines
760 B
TypeScript
// Loaded from https://deno.land/std/fs/exists.ts
|
|
|
|
|
|
// Copyright 2018-2021 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;
|
|
}
|
|
}
|