swc/crates/swc_bundler/tests/.cache/deno/01474d64962c420e64b489dc2c1ef19664ef6574.ts

35 lines
767 B
TypeScript
Raw Normal View History

// 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;
}
}