fix(core): update

This commit is contained in:
Philipp Kunz 2023-07-28 07:33:54 +02:00
parent e6d87b648a
commit bf12f0d750
2 changed files with 3 additions and 3 deletions

View File

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

View File

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