From f9ad937c56221f815a169feab8ac93859ffd4d6d Mon Sep 17 00:00:00 2001 From: jusax23 Date: Fri, 22 Oct 2021 22:57:31 +0200 Subject: [PATCH] change --- crypto.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto.js b/crypto.js index ffd56b8..905f33d 100644 --- a/crypto.js +++ b/crypto.js @@ -5,10 +5,10 @@ if (typeof process != "undefined") { crypto = await import('crypto'); if(typeof crypto.webcrypto != "undefined"){ crypto = crypto.webcrypto; - console.log("subtle"); + console.log("ilmk: using subtle"); }else{ node = true; - console.log("node crypto"); + console.log("ilmk: using node crypto"); } }else{ crypto = window.crypto;