Skip to content

Commit

Permalink
Added more Domains. Will also be included in Release v4
Browse files Browse the repository at this point in the history
  • Loading branch information
BatchDebug authored Feb 6, 2025
1 parent 01fdc31 commit 3585b0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ class SearchEngine {
.replace(/[^a-z0-9]/g, '')
.replace(/\s+/g, '');

const tlds = ['com', 'net', 'org', 'io', 'app', 'dev'];
const tlds = ['com', 'net', 'org', 'io', 'app', 'dev', 'ai', 'co',
'me', 'info', 'biz', 'edu', 'gov', 'int', 'mil',
'name', 'pro', 'aero', 'asia', 'cat', 'coop', 'jobs',
'mobi', 'museum', 'tel', 'travel', 'xyz', 'tech', 'de', 'co.uk'];

const results = await Promise.all(tlds.map(async tld => {
const domain = `${cleanQuery}.${tld}`;
Expand Down

0 comments on commit 3585b0d

Please sign in to comment.