mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-27 00:52:05 +00:00
7 lines
231 B
TypeScript
7 lines
231 B
TypeScript
import fs from "node:fs";
|
|
|
|
export const existsSync = fs.existsSync.bind(fs);
|
|
export const readFileSync = fs.readFileSync.bind(fs);
|
|
export const statSync = fs.statSync.bind(fs);
|
|
export const realpathSync = fs.realpathSync.bind(fs);
|