More hotfix

* Fix empty solution for all valid math expressions
This commit is contained in:
omuretsu
2023-05-28 05:25:09 -04:00
parent 8e4492685d
commit ae8f26f03b
5 changed files with 8 additions and 20 deletions
+1 -1
View File
@@ -22,6 +22,6 @@ export function arrayToString(a: unknown[]): string {
return `[${vals.join(", ")}]`;
}
export function FilterTruthy<T>(input: T[]): Truthy<T>[] {
export function filterTruthy<T>(input: T[]): Truthy<T>[] {
return input.filter(Boolean) as Truthy<T>[];
}