We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9842890 commit 736236dCopy full SHA for 736236d
0x14-javascript-web_scraping/1-writeme.js
@@ -0,0 +1,8 @@
1
+#!/usr/bin/node
2
+const fs = require('fs');
3
+const file = process.argv[2];
4
+const data = process.argv[3];
5
+
6
+fs.writeFile(file, data, (error) => {
7
+ if (error) console.log(error);
8
+});
0x14-javascript-web_scraping/init.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+find . -type f -name "*.js" -exec black {} \;
+semistandard .
+semistandard --fix
0 commit comments