Files
hmc-guide/themes/hugo-mod-jslibs-dist/popperjs/package/lib/utils/getVariation.js.flow
2026-01-11 16:48:19 -08: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);
}