Files
vscode-front-matter/src/utils/existsAsync.ts

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