6 lines
121 B
TypeScript
6 lines
121 B
TypeScript
|
import { readFileSync } from "fs"
|
||
|
|
||
|
export function readStaticFile(path: string) {
|
||
|
return readFileSync(path, "utf-8")
|
||
|
}
|