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.
This commit is contained in:
Kaustubh BM 2021-05-14 18:25:44 +05:30 committed by GitHub
parent ea7da0a824
commit 2f600f1dbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1166,10 +1166,13 @@ class Utils {
return { return {
"Space": " ", "Space": " ",
"Percent": "%", "Percent": "%",
"Period": ".",
"Comma": ",", "Comma": ",",
"Semi-colon": ";", "Semi-colon": ";",
"Colon": ":", "Colon": ":",
"Hyphen": "-", "Hyphen": "-",
"Hash": "#",
"Ampersand": "&",
"Tab": "\t", "Tab": "\t",
"Line feed": "\n", "Line feed": "\n",
"CRLF": "\r\n", "CRLF": "\r\n",