diff options
Diffstat (limited to 'std/fs/README.md')
| -rw-r--r-- | std/fs/README.md | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/std/fs/README.md b/std/fs/README.md index 612b1393f..dd1692524 100644 --- a/std/fs/README.md +++ b/std/fs/README.md @@ -183,20 +183,6 @@ readFileStr("./target.dat", { encoding: "utf8" }); // returns a promise readFileStrSync("./target.dat", { encoding: "utf8" }); // string ``` -### writeFileStr - -Write the string to file. - -```ts -import { - writeFileStr, - writeFileStrSync, -} from "https://deno.land/std/fs/mod.ts"; - -writeFileStr("./target.dat", "file content"); // returns a promise -writeFileStrSync("./target.dat", "file content"); // void -``` - ### expandGlob Expand the glob string from the specified `root` directory and yield each result |
