37098-vm/staticfiles/@popperjs/core/lib/utils/getBasePlacement.js.flow
2025-12-21 05:45:09 +00:00

9 lines
220 B
Plaintext

// @flow
import { type BasePlacement, type Placement, auto } from '../enums';
export default function getBasePlacement(
placement: Placement | typeof auto
): BasePlacement {
return (placement.split('-')[0]: any);
}