From ede78c540fa597fbf187fe6ea32b7b789c8a0bab Mon Sep 17 00:00:00 2001 From: n1474335 Date: Thu, 5 Mar 2020 15:19:23 +0000 Subject: [PATCH] Tidied up 'Luhn Checksum' operation --- src/core/operations/LuhnChecksum.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/LuhnChecksum.mjs b/src/core/operations/LuhnChecksum.mjs index 24549072..0119b2c1 100644 --- a/src/core/operations/LuhnChecksum.mjs +++ b/src/core/operations/LuhnChecksum.mjs @@ -19,8 +19,8 @@ class LuhnChecksum extends Operation { super(); this.name = "Luhn Checksum"; - this.module = "Crypto"; - this.description = "The Luhn algorithm, also known as the modulus 10 or mod 10 algorithm, is a simple checksum formula used to validate a variety of identification numbers, such as credit card numbers, IMEI numbers, Canadian Social Insurance Numbers."; + this.module = "Default"; + this.description = "The Luhn algorithm, also known as the modulus 10 or mod 10 algorithm, is a simple checksum formula used to validate a variety of identification numbers, such as credit card numbers, IMEI numbers and Canadian Social Insurance Numbers."; this.infoURL = "https://wikipedia.org/wiki/Luhn_algorithm"; this.inputType = "string"; this.outputType = "number";