diff options
Diffstat (limited to 'std/fs/README.md')
-rw-r--r-- | std/fs/README.md | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/std/fs/README.md b/std/fs/README.md index b31d20814..48fc55675 100644 --- a/std/fs/README.md +++ b/std/fs/README.md @@ -118,17 +118,6 @@ copySync("./foo", "./existingFolder", { overwrite: true }); // Will overwrite existingFolder ``` -### readJson - -Reads a JSON file and then parses it into an object - -```ts -import { readJson, readJsonSync } from "https://deno.land/std/fs/mod.ts"; - -const f = await readJson("./foo.json"); -const foo = readJsonSync("./foo.json"); -``` - ### writeJson Writes an object to a JSON file. |