UNPKG

107 BPlain TextView Raw
1export const fs = require("fs");
2
3export function withGlobalFS<T>(thunk: () => T): T {
4 return thunk();
5}