Skip to content

Instantly share code, notes, and snippets.

@solarsailer
Created June 15, 2022 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solarsailer/708777a59eb7cba75385091e5a9edaba to your computer and use it in GitHub Desktop.
Save solarsailer/708777a59eb7cba75385091e5a9edaba to your computer and use it in GitHub Desktop.
Deno Utility Belt
export async function writeFile(path, content) {
await Deno.writeTextFile(path, content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment