Skip to main content
Module

x/flat/src/txt.ts

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