Issue #2026 - Part 3a - Add support for BigInt in devtools. (Server side) https://bugzilla.mozilla.org/show_bug.cgi?id=1527867

This commit is contained in:
Brian Smith 2023-07-25 02:27:03 -05:00 committed by roytam1
commit e861cd3b3a
2 changed files with 29 additions and 19 deletions

View file

@ -2159,6 +2159,12 @@ function createValueGrip(value, pool, makeObjectGrip) {
}
return value;
case "bigint":
return {
type: "BigInt",
text: value.toString(),
};
case "undefined":
return { type: "undefined" };