( placement: Placement | typeof auto )
| 2 | import { type BasePlacement, type Placement, auto } from '../enums'; |
| 3 | |
| 4 | export default function getBasePlacement( |
| 5 | placement: Placement | typeof auto |
| 6 | ): BasePlacement { |
| 7 | return (placement.split('-')[0]: any); |
| 8 | } |
no outgoing calls
no test coverage detected