From 02145b45adc768590fe152d702b70e8f45441184 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 31 May 2021 17:04:52 +0200 Subject: [PATCH] Remove unused arg from Client.whois --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 41eb476..6695a33 100644 --- a/lib/client.js +++ b/lib/client.js @@ -293,7 +293,7 @@ export default class Client extends EventTarget { } } - whois(target, callback) { + whois(target) { var targetCM = this.cm(target); var msg = { command: "WHOIS", params: [target] }; return this.roundtrip(msg, (event) => {