37095-vm/staticfiles/@popperjs/core/lib/utils/getVariation.js.flow
2025-12-20 20:39:53 +00:00

7 lines
185 B
Plaintext

// @flow
import { type Variation, type Placement } from '../enums';
export default function getVariation(placement: Placement): ?Variation {
return (placement.split('-')[1]: any);
}