Skip to content

Instantly share code, notes, and snippets.

@triadwoozie
triadwoozie / File.ts
Last active October 14, 2024 16:52 — forked from theatom06/File.ts
component of userdatatarball
import fs from 'fs/promises';
/**
* A class for reading, writing, and appending data to a file.
*/
class FileJS {
/**
* The name of the file to read, write, or append to.
*/
private fileName: string;