ESM: Ported Bit shift, MAC address and Morse Code operations.

This commit is contained in:
n1474335 2018-05-07 12:12:58 +01:00
parent 0ca0e7427d
commit 6987e6b1b9
8 changed files with 591 additions and 3 deletions

View file

@ -40,7 +40,9 @@ function main() {
}
const op = OP_CONFIG[opName];
const moduleName = opName.replace(/\s/g, "");
const moduleName = opName.replace(/\w\S*/g, txt => {
return txt.charAt(0).toUpperCase() + txt.substr(1);
}).replace(/\s/g, "");
let legacyFile = "";