aboutsummaryrefslogtreecommitdiff
path: root/node_modules/fs-extra/docs/writeJson-sync.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/fs-extra/docs/writeJson-sync.md')
-rw-r--r--node_modules/fs-extra/docs/writeJson-sync.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/node_modules/fs-extra/docs/writeJson-sync.md b/node_modules/fs-extra/docs/writeJson-sync.md
new file mode 100644
index 000000000..9e649bbc1
--- /dev/null
+++ b/node_modules/fs-extra/docs/writeJson-sync.md
@@ -0,0 +1,21 @@
+# writeJsonSync(file, object, [options])
+
+Writes an object to a JSON file. `options` are the same that
+you'd pass to [`jsonFile.writeFileSync()`](https://github.com/jprichardson/node-jsonfile#writefilesyncfilename-obj-options).
+
+**Alias:** `writeJSONSync()`
+
+- `file` `<String>`
+- `object` `<Object>`
+- `options` `<Object>`
+
+## Example:
+
+```js
+const fs = require('fs-extra')
+
+fs.writeJsonSync('./package.json', {name: 'fs-extra'})
+```
+---
+
+**See also:** [`outputJsonSync()`](outputJson-sync.md)