rm consolelog

This commit is contained in:
Olivier Gagnon 2021-12-03 15:20:31 -05:00
parent e6b263e6ec
commit f111beb399

@ -99,7 +99,6 @@ export function ParseCommand(command: string): (string | number | boolean)[] {
const arg = command.substr(start, i - start);
// If this is a number, convert it from a string to number
console.log(arg);
if (isNumber(arg)) {
args.push(parseFloat(arg));
} else if (arg === "true") {
@ -120,7 +119,6 @@ export function ParseCommand(command: string): (string | number | boolean)[] {
const arg = command.substr(start, i - start);
// If this is a number, convert it from string to number
console.log(arg);
if (isNumber(arg)) {
args.push(parseFloat(arg));
} else if (arg === "true") {