Add support of binary numbers

This commit is contained in:
boryslevytskyi
2017-05-27 13:29:52 +03:00
parent fb4c5c9a06
commit edbd555f65
50 changed files with 259 additions and 2029 deletions

View File

@@ -11,12 +11,6 @@ export default {
args = { commands: [] };
splitHashList(decodedHash).forEach(function(value) {
// Support for -debur or -notrack properties
if(/^\-[a-zA-Z]+$/.test(value)) {
args[value.substr(1)] = true;
return;
}
args.commands.push(value);
});