We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 235b655 commit 9fa853aCopy full SHA for 9fa853a
media/editor/dataInspectorProperties.tsx
@@ -16,6 +16,8 @@ export interface IInspectableType {
16
export const inspectableTypes: readonly IInspectableType[] = [
17
{ label: "binary", minBytes: 1, convert: dv => dv.getUint8(0).toString(2).padStart(8, "0") },
18
19
+ { label: "octal", minBytes: 1, convert: dv => dv.getUint8(0).toString(8).padStart(3, "0") },
20
+
21
{ label: "uint8", minBytes: 1, convert: dv => dv.getUint8(0).toString() },
22
{ label: "int8", minBytes: 1, convert: dv => dv.getInt8(0).toString() },
23
0 commit comments