shift73k/assets_old/node_modules/@popperjs/core/lib/utils/getVariation.js.flow

7 lines
185 B
Text
Raw Normal View History

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