mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-01 19:12:30 +02:00
5 lines
120 B
TypeScript
5 lines
120 B
TypeScript
import { promisify } from 'util';
|
|
import { lstat as lstatCb } from 'fs';
|
|
|
|
export const lstatAsync = promisify(lstatCb);
|