From 2c07e0fa0d029665a49ccfa7584be839fc4f740b Mon Sep 17 00:00:00 2001 From: Sonny Piers Date: Thu, 12 Dec 2024 14:05:56 +0100 Subject: [PATCH] f --- packages/sasl/index.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/sasl/index.js b/packages/sasl/index.js index afcf96f4..d367d58e 100644 --- a/packages/sasl/index.js +++ b/packages/sasl/index.js @@ -9,16 +9,11 @@ const SASLFactory = require("saslmechanisms"); const NS = "urn:ietf:params:xml:ns:xmpp-sasl"; -console.log("foobar"); function getMechanismNames(features) { - console.log("lol"); return features .getChild("mechanisms", NS) .getChildElements() - .map((el) => { - console.log(el, typeof el); - return el.text(); - }); + .map((el) => el.text()); } async function authenticate(SASL, entity, mechname, credentials) {