(value: number)
| 1675 | } |
| 1676 | |
| 1677 | function formatCliNumber(value: number) { |
| 1678 | return Number.isInteger(value) |
| 1679 | ? String(value) |
| 1680 | : value.toFixed(6).replace(/0+$/, "").replace(/\.$/, ""); |
| 1681 | } |
| 1682 | |
| 1683 | function hasNativeStaticLayoutTimeline(options: NativeStaticLayoutExportOptions) { |
| 1684 | return (options.timelineSegments?.length ?? 0) > 0; |
no outgoing calls
no test coverage detected