package.lib.utils.getVariation.js.flow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Tooltip and Popover Positioning Engine
// @flow
import { type Variation, type Placement } from '../enums';
export default function getVariation(placement: Placement): ?Variation {
return (placement.split('-')[1]: any);
}