( value: BareItem, parameters?: Iterable<[string, BareItem]>, )
| 336 | * ``` |
| 337 | */ |
| 338 | export function item( |
| 339 | value: BareItem, |
| 340 | parameters?: Iterable<[string, BareItem]>, |
| 341 | ): Item { |
| 342 | return { value, parameters: new Map(parameters) }; |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Creates an Inner List from Items and optional Parameters. |