Add empty line after require

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-19 11:40:14 +03:00
parent 1a4cc379bd
commit f0fbe0c3e5
9 changed files with 10 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Writes a JSON object to a file.
```js
const fs = require('fs');
const JSONToFile = (obj, filename) =>
fs.writeFileSync(`${filename}.json`, JSON.stringify(obj, null, 2));
```