(value: number)
| 51 | } |
| 52 | |
| 53 | export function float(value: number): FloatValue { |
| 54 | return { |
| 55 | type: 'float', |
| 56 | value, |
| 57 | }; |
| 58 | } |
| 59 | |
| 60 | export function bool(value: boolean): NumberValue { |
| 61 | return int(value ? 1 : 0); |
no outgoing calls
no test coverage detected