merge master

This commit is contained in:
Olivier Gagnon
2021-09-19 00:59:13 -04:00
5 changed files with 283 additions and 17384 deletions
+1 -2
View File
@@ -4,9 +4,8 @@ function isNumber(str: string): boolean {
if (typeof str != "string") {
return false;
} // Only process strings
return !isNaN(parseFloat(str));
return !isNaN(str as unknown as number) && !isNaN(parseFloat(str));
}
export function ParseCommands(commands: string): string[] {
// Sanitize input
commands = commands.trim();