From 2f600f1dbf4167ccd8ce534b2839c324c302fb06 Mon Sep 17 00:00:00 2001 From: Kaustubh BM Date: Fri, 14 May 2021 18:25:44 +0530 Subject: [PATCH] Update Utils.mjs Added the Period, Hash and Ampersand representations to the charRep method so that it could be used in the MultiTap Cipher codes. --- src/core/Utils.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/Utils.mjs b/src/core/Utils.mjs index 613ed13f..7adcf149 100755 --- a/src/core/Utils.mjs +++ b/src/core/Utils.mjs @@ -1166,10 +1166,13 @@ class Utils { return { "Space": " ", "Percent": "%", + "Period": ".", "Comma": ",", "Semi-colon": ";", "Colon": ":", "Hyphen": "-", + "Hash": "#", + "Ampersand": "&", "Tab": "\t", "Line feed": "\n", "CRLF": "\r\n",