DenoDeno.readTextFileSyncfunction Deno.readTextFileSyncallow-read#readTextFileSync(path: string | URL): stringSynchronously reads and returns the entire contents of a file as an UTF-8 decoded string. Reading a directory throws an error. const data = Deno.readTextFileSync("hello.txt"); console.log(data); Requires allow-read permission. Parameters ##path: string | URLReturn Type #string
function Deno.readTextFileSyncallow-read#readTextFileSync(path: string | URL): stringSynchronously reads and returns the entire contents of a file as an UTF-8 decoded string. Reading a directory throws an error. const data = Deno.readTextFileSync("hello.txt"); console.log(data); Requires allow-read permission. Parameters ##path: string | URLReturn Type #string