From bf12f0d7506a9dc30a5cc1732eb83066691500e5 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 28 Jul 2023 07:33:54 +0200 Subject: [PATCH] fix(core): update --- test/test.ts | 4 ++-- ts/00_commitinfo_data.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.ts b/test/test.ts index acc3e00..190f75e 100644 --- a/test/test.ts +++ b/test/test.ts @@ -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(); diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e29599d..8256467 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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' }