source: imaps-frontend/node_modules/@popperjs/core/lib/utils/getBasePlacement.js.flow

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 220 bytes
Line 
1// @flow
2import { type BasePlacement, type Placement, auto } from '../enums';
3
4export default function getBasePlacement(
5 placement: Placement | typeof auto
6): BasePlacement {
7 return (placement.split('-')[0]: any);
8}
Note: See TracBrowser for help on using the repository browser.