ohctechv3/.svn/pristine/ac/ac2233fde064b4b0de7329b8882328e005bd116a.svn-base
2024-10-28 15:03:36 +05:30

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);
}