()
| 135 | |
| 136 | const na = () => language.t("debugBar.na").toUpperCase() |
| 137 | const heap = () => (state.heap.limit ? (state.heap.used ?? 0) / state.heap.limit : undefined) |
| 138 | const heapv = () => { |
| 139 | const value = heap() |
| 140 | if (value === undefined) return na() |