-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
37 lines (33 loc) · 1.15 KB
/
index.js
File metadata and controls
37 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { firstCheck, findDeath } from "./firstCheck.js"
import { finalCheck, confirmIfDead} from './finalCheck.js'
try {
findDeath();
finalCheck();
} catch (e) {
console.log(e.message);
}
//async function createTestJSON(raw) {
// let dl = [,"chuganwang.com","carlightstore.com","tnsvoronezh.ru", "fcspam.ru", "YourGameGuy.com", "CanadaGoose-Jackets.org.uk","MichaelKorsOnline.ca",
// "nao-stroy.ru",
// "StampProject.it",
// "usacheapnfljerseysbiz.com",
// "yazdhistory.com",
// "CanadaGooseOutletStore.ca",
// "wsland.cn",
// "Brenda-RossRealty.org",
// "AllJordan.xyz",
// "Teach-Sports.com",
// "Black-Tip.top",
// "druskabydaisy.com",
// "JazzWorld.ch",
// "Milk.xyz",
// "ra3e.com"]
// let a = [];
// for (let i = 0; i < dl.length; i ++) {
// let o = await confirmIfDead(dl[i], 1);
// if (o) a.push(o);
// }
// import('fs').then(fs => {
// fs.writeFileSync('./test.json', JSON.stringify(a));
// });
// }