mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-06 13:32:30 +02:00
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import { stat } from 'fs';
|
|
import { promisify } from 'util';
|
|
|
|
export const existsAsync = async (path: string) => {
|
|
return promisify(stat)(path)
|
|
.then(() => true)
|
|
.catch(() => false);
|
|
};
|