mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
import { promisify } from "util";
|
|
import fs from "fs";
|
|
|
|
export const statAsync = promisify(fs.stat);
|
|
export const existsAsync = promisify(fs.exists);
|