Skip to content

Commit

Permalink
From Base85 and From Braille signatures added for magic
Browse files Browse the repository at this point in the history
  • Loading branch information
n1073645 committed Nov 25, 2019
1 parent 09e93b4 commit 1118ff5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/core/operations/FromBase85.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,23 @@ class FromBase85 extends Operation {
value: ALPHABET_OPTIONS
},
];
this.patterns = [
{
match: "^\\s*(<~)?([!-u]{4})+([!-u]{1,3})??(~>)?\\s*$",
flags: "",
args: ["!-u", true]
},
{
match: "^\\s*(<~)?([0-9A-Z.-:+=^!/*?&<>()[]{}@%$#]{4})+([0-9A-Z.-:+=^!/*?&<>()[]{}@%$#]{1,3})??(~>)?\\s*$",
flags: "i",
args: ["0-9a-zA-Z.-:+=^!/*?&<>()[]{}@%$#", true]
},
{
match: "^\\s*(<~)?([0-9A-Z.-:+=^!/*?&_<>()[]{}@%$#;`|~]{4})+([0-9A-Z.-:+=^!/*?&_<>()[]{}@%$#;`|~]{1,3})??(~>)?\\s*$",
flags: "i",
args: ["0-9A-Za-z!#$%&()*+-;<=>?@^_`{|~}", true]
}
];
}

/**
Expand Down
7 changes: 7 additions & 0 deletions src/core/operations/FromBraille.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ class FromBraille extends Operation {
this.inputType = "string";
this.outputType = "string";
this.args = [];
this.patterns = [
{
match: "^\\s*[⠀⠁⠂⠃⠄⠅⠆⠇⠈⠉⠊⠋⠌⠍⠎⠏⠐⠑⠒⠓⠔⠕⠖⠗⠘⠙⠚⠛⠜⠝⠞⠟⠠⠡⠢⠣⠤⠥⠦⠧⠨⠩⠪⠫⠬⠭⠮⠯⠰⠱⠲⠳⠴⠵⠶⠷⠸⠹⠺⠻⠼⠽⠾⠿]+\\s*$",
flags: "i",
args: [true]
}
];
}

/**
Expand Down

0 comments on commit 1118ff5

Please sign in to comment.