mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
function saveToFile(path: string, content: string) {
|
|
console.log("Writing content to file: " + path);
|
|
return Bun.write(path, content);
|
|
}
|
|
export { saveToFile };
|