Skip to content

Commit 54e8939

Browse files
committed
Document missing expression types in protocol.md.
Fixes #48
1 parent f719eb8 commit 54e8939

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

protocol.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,22 @@ This expression will evaluate to the following object:
130130
}
131131
```
132132

133+
`["undefined"]`
134+
135+
The literal value `undefined`.
136+
137+
`["inf"]`, `["-inf"]`, `["nan"]`
138+
139+
The values Infinity, -Infinity, and NaN.
140+
141+
`["bytes", base64]`
142+
143+
A `Uint8Array`, represented as a base64-encoded string.
144+
145+
`["bigint", decimal]`
146+
147+
A bigint value, represented as a decimal string.
148+
133149
`["date", number]`
134150

135151
A JavaScript `Date` value. The number represents milliseconds since the Unix epoch.

0 commit comments

Comments
 (0)