You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
220 B

  1. // @flow
  2. import { type BasePlacement, type Placement, auto } from '../enums';
  3. export default function getBasePlacement(
  4. placement: Placement | typeof auto
  5. ): BasePlacement {
  6. return (placement.split('-')[0]: any);
  7. }