summaryrefslogtreecommitdiff
path: root/node_modules/fs-extra/docs/ensureFile-sync.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/fs-extra/docs/ensureFile-sync.md')
-rw-r--r--node_modules/fs-extra/docs/ensureFile-sync.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/fs-extra/docs/ensureFile-sync.md b/node_modules/fs-extra/docs/ensureFile-sync.md
deleted file mode 100644
index 25ac39d..0000000
--- a/node_modules/fs-extra/docs/ensureFile-sync.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# ensureFileSync(file)
-
-Ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is **NOT MODIFIED**.
-
-**Alias:** `createFileSync()`
-
-- `file` `<String>`
-
-## Example:
-
-```js
-const fs = require('fs-extra')
-
-const file = '/tmp/this/path/does/not/exist/file.txt'
-fs.ensureFileSync(file)
-// file has now been created, including the directory it is to be placed in
-```