mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
docs(std/fs): remove stale references to readFileStr and writeFileStr (#7254)
This commit is contained in:
parent
e27fb30117
commit
62809cd605
1 changed files with 0 additions and 31 deletions
|
@ -174,37 +174,6 @@ async function printFilesNames() {
|
|||
printFilesNames().then(() => console.log("Done!"));
|
||||
```
|
||||
|
||||
### readFileStr
|
||||
|
||||
Read file and output it as a string. Note: this module does not require the
|
||||
`--unstable` flag.
|
||||
|
||||
**ReadOptions**
|
||||
|
||||
- encoding : The encoding to read file. lowercased.
|
||||
|
||||
```ts
|
||||
import { readFileStr, readFileStrSync } from "https://deno.land/std/fs/mod.ts";
|
||||
|
||||
readFileStr("./target.dat", { encoding: "utf8" }); // returns a promise
|
||||
readFileStrSync("./target.dat", { encoding: "utf8" }); // string
|
||||
```
|
||||
|
||||
### writeFileStr
|
||||
|
||||
Write the string to file. Note: this module does not require the `--unstable`
|
||||
flag.
|
||||
|
||||
```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
|
||||
|
|
Loading…
Reference in a new issue