Skip to main content
Module

x/flat/src/txt.ts

A collection of postprocessing utilities for flat
Latest
File
export async function readTXT(path: string) { const text = await Deno.readTextFile(path) return text} export async function writeTXT(path: string, text: string, options?: Deno.WriteFileOptions) { await Deno.writeTextFile(path, text, options)}