2 Commits

Author SHA1 Message Date
b80e042cbd 1.0.4 2023-07-28 07:33:55 +02:00
bf12f0d750 fix(core): update 2023-07-28 07:33:54 +02:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@apiclient.xyz/abuse.ch", "name": "@apiclient.xyz/abuse.ch",
"version": "1.0.3", "version": "1.0.4",
"private": false, "private": false,
"description": "an unofficial client to retrieve abuse.ch data", "description": "an unofficial client to retrieve abuse.ch data",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -4,13 +4,13 @@ import * as abuseCh from '../ts/index.js';
tap.test('should deal with UrlHouse data', async () => { tap.test('should deal with UrlHouse data', async () => {
const urlHouse = new abuseCh.UrlHouse(); const urlHouse = new abuseCh.UrlHouse();
const data = await urlHouse.getData(); const data = await urlHouse.getData();
console.log(data); console.log(data.length);
}); });
tap.test('should deal with UrlHouse data', async () => { tap.test('should deal with UrlHouse data', async () => {
const threatFox = new abuseCh.ThreatFox(); const threatFox = new abuseCh.ThreatFox();
const data = await threatFox.getData(); const data = await threatFox.getData();
console.log(data); console.log(data.length);
}); });
tap.start(); tap.start();

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@apiclient.xyz/abuse.ch', name: '@apiclient.xyz/abuse.ch',
version: '1.0.3', version: '1.0.4',
description: 'an unofficial client to retrieve abuse.ch data' description: 'an unofficial client to retrieve abuse.ch data'
} }