mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-26 19:14:32 +02:00
More hotfix
* Fix empty solution for all valid math expressions
This commit is contained in:
@@ -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>[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user