From 807ff3032c76c030cfc9b59f944da192cb7df3fc Mon Sep 17 00:00:00 2001 From: Bryce Johnson Date: Wed, 1 Apr 2015 01:04:05 -0400 Subject: [PATCH] Update section links in README to match current section ids. --- README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 9431f65..6fdbd1b 100644 --- a/README.md +++ b/README.md @@ -56,30 +56,30 @@ var fse = require('fs-extra') ``` - Methods ------- - -- [createOutputStream](#createOutputStream) -- [emptyDir](#emptyDir) -- [emptyDirSync](#emptyDir) -- [ensureFile](#ensureFile) -- [ensureFileSync](#ensureFile) -- [ensureDir](#ensureDir) -- [ensureDir](#ensureDir) -- [mkdirs](#mkdirs) -- [mkdirsSync](#mkdirsSync) -- [move](#move) -- [outputFile](#outputFile) -- [outputFileSync](#outputFile) -- [outputJson](#outputJson) -- [outputJsonSync](#outputJson) -- [readJson](#readJson) -- [readJsonSync](#readJson) -- [remove](#remove) -- [removeSync](#remove) -- [writeJson](#writeJson) -- [writeJsonSync](#writeJson) +- [copy](#copysrc-dest-options-callback) +- [copySync](#copysrc-dest-options-callback) +- [createOutputStream](#createoutputstreamfile-options) +- [emptyDir](#emptydirdir-callback) +- [emptyDirSync](#emptydirdir-callback) +- [ensureFile](#ensurefilefile-callback) +- [ensureFileSync](#ensurefilefile-callback) +- [ensureDir](#ensuredirdir-callback) +- [ensureDirSync](#ensuredirdir-callback) +- [mkdirs](#mkdirsdir-callback) +- [mkdirsSync](#mkdirsdir-callback) +- [move](#movesrc-dest-options-callback) +- [outputFile](#outputfilefile-data-callback) +- [outputFileSync](#outputfilefile-data-callback) +- [outputJson](#outputjsonfile-data-callback) +- [outputJsonSync](#outputjsonfile-data-callback) +- [readJson](#readjsonfile-options-callback) +- [readJsonSync](#readjsonfile-options-callback) +- [remove](#removedir-callback) +- [removeSync](#removedir-callback) +- [writeJson](#writejsonfile-object-options-callback) +- [writeJsonSync](#writejsonfile-object-options-callback) **NOTE:** You can still use the native Node.js methods. They are copied over to `fs-extra`.