2 Commits

Author SHA1 Message Date
4093d091f4 1.0.11 2023-04-19 18:49:06 +02:00
7a8086b58c fix(core): update 2023-04-19 18:49:06 +02:00
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartwhois",
"version": "1.0.10",
"version": "1.0.11",
"private": false,
"description": "a package for dealing with whois requests",
"main": "dist_ts/index.js",

View File

@ -22,6 +22,10 @@ tap.test('should get whois info for domain', async () => {
const whoisInfo = await testSmartWhois.getWhoisForDomain('task.vc');
console.log(whoisInfo);
});
tap.test('should get whois info for domain', async () => {
const whoisInfo = await testSmartWhois.getWhoisForDomain('https://lossless.com');
console.log(whoisInfo);
});
tap.test('should get whois info for domain', async () => {
const whoisInfo = await testSmartWhois.getWhoisForDomain('https://coffee.link/understanding-gen-z/');

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartwhois',
version: '1.0.10',
version: '1.0.11',
description: 'a package for dealing with whois requests'
}