mirror of
https://github.com/zadam/trilium.git
synced 2025-10-21 07:38:53 +02:00
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { promisify } from "util";
|
|
import fs from "fs";
|
|
|
|
export const statAsync = promisify(fs.stat);
|
|
export const existsAsync = promisify(fs.exists);
|