ModulesFs ModuleMelon.std.fs.readTextAsync(path)On this pageMelon.std.fs.readTextAsync(path)Readss a file text content and returns it as string.Status: stable Returns: Promise<string>ParametersNameTypeDescriptionpathstringThe target path to the fileExample usageconst { readTextAsync } = Melon.fs;const myContent = await readTextAsync("./hi.txt");