( value: Uint8Array, )
| 239 | * ``` |
| 240 | */ |
| 241 | export function binary( |
| 242 | value: Uint8Array, |
| 243 | ): Extract<BareItem, { type: "binary" }> { |
| 244 | return { type: "binary", value }; |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Creates a boolean Bare Item. |
no outgoing calls
no test coverage detected