mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
Merge pull request #2582 from deathly809/bug/helper_number_should_handle_nan
Ensure INetscriptHelper number function handles NaN
This commit is contained in:
commit
d2fadfe600
@ -13,7 +13,6 @@ import { SourceFileFlags } from "../SourceFile/SourceFileFlags";
|
|||||||
|
|
||||||
import { dialogBoxCreate } from "../ui/React/DialogBox";
|
import { dialogBoxCreate } from "../ui/React/DialogBox";
|
||||||
import { clearObject } from "../utils/helpers/clearObject";
|
import { clearObject } from "../utils/helpers/clearObject";
|
||||||
import { Router } from "../ui/GameRoot";
|
|
||||||
|
|
||||||
import { WHRNG } from "../Casino/RNG";
|
import { WHRNG } from "../Casino/RNG";
|
||||||
|
|
||||||
|
@ -432,8 +432,11 @@ export function NetscriptFunctions(workerScript: WorkerScript): NS {
|
|||||||
throw makeRuntimeErrorMsg(funcName, `${argName} should be a string`);
|
throw makeRuntimeErrorMsg(funcName, `${argName} should be a string`);
|
||||||
},
|
},
|
||||||
number: (funcName: string, argName: string, v: any): number => {
|
number: (funcName: string, argName: string, v: any): number => {
|
||||||
|
if (!isNaN(v))
|
||||||
|
{
|
||||||
if (typeof v === "number") return v;
|
if (typeof v === "number") return v;
|
||||||
if (!isNaN(v) && !isNaN(parseFloat(v))) return parseFloat(v);
|
if (!isNaN(parseFloat(v))) return parseFloat(v);
|
||||||
|
}
|
||||||
throw makeRuntimeErrorMsg(funcName, `${argName} should be a number`);
|
throw makeRuntimeErrorMsg(funcName, `${argName} should be a number`);
|
||||||
},
|
},
|
||||||
boolean: (v: any): boolean => {
|
boolean: (v: any): boolean => {
|
||||||
|
Loading…
Reference in New Issue
Block a user