1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/util/BitField.ts b/src/util/util/BitField.ts
index 9bdbf6d7..306bfb32 100644
--- a/src/util/util/BitField.ts
+++ b/src/util/util/BitField.ts
@@ -140,7 +140,7 @@ export class BitField {
if (typeof bit === "string" && typeof FLAGS[bit] !== "undefined") return FLAGS[bit];
if (bit === "0") return BigInt(0); //special case: 0
if (typeof bit === "string") return BigInt(bit); //last ditch effort...
- if(/--debug|--inspect/.test(process.execArgv.join(' '))) debugger; //if you're here, we have an invalid bitfield... if bit is 0, thats fine, I guess...
+ if (/--debug|--inspect/.test(process.execArgv.join(" "))) debugger; //if you're here, we have an invalid bitfield... if bit is 0, thats fine, I guess...
throw new RangeError("BITFIELD_INVALID: " + bit);
}
}
|