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