Appearance
Returns the contents of the file as a string.
function read(path: string): string
path
string
local fs = require("@std/fs") local content = fs.read("config.json") print(content)