This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const majors = {}; | |
const minors = {}; | |
let total = 0; | |
const table = document.querySelectorAll('div > ul.list.ml0.pl0')[1]; | |
for (const row of table.childNodes.values()) { | |
const downloadsCell = row.querySelector('.downloads'); | |
if (!downloadsCell) { continue; } | |
const version = row.childNodes[0].innerText.split('.'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/prettier/index.js b/node_modules/prettier/index.js | |
index 4d15c89..aef7249 100644 | |
--- a/node_modules/prettier/index.js | |
+++ b/node_modules/prettier/index.js | |
@@ -48363,6 +48363,12 @@ var parsers$6 = { | |
return require$$1$3.parsers.flow; | |
}, | |
+ // JS - hermes - flow | |
+ get hermes() { |