From 96266128afe5ddb2bd0b5b8c217002aa11b3c4fe Mon Sep 17 00:00:00 2001 From: Christophe Diederichs Date: Tue, 16 Jun 2020 16:03:27 +0200 Subject: [PATCH] removed duplicate module.exports declaraion --- crypto_scalarmult.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crypto_scalarmult.js b/crypto_scalarmult.js index 7b4c46b..c98f1c0 100644 --- a/crypto_scalarmult.js +++ b/crypto_scalarmult.js @@ -63,13 +63,6 @@ function crypto_scalarmult (q, n, p) { return 0 } -module.exports = { - crypto_scalarmult_base, - crypto_scalarmult_base, - crypto_scalarmult_BYTES, - crypto_scalarmult_SCALARBYTES -} - function crypto_scalarmult_base (q, n) { return crypto_scalarmult(q, n, _9) }