Created
June 15, 2022 10:04
-
-
Save solarsailer/708777a59eb7cba75385091e5a9edaba to your computer and use it in GitHub Desktop.
Deno Utility Belt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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