Files
caria-website/module/@popperjs/core@2.11.8/lib/utils/getBasePlacement.js.flow
Christian CUNAT-BRULE 5db1c28fd8
All checks were successful
Déploiement DEV / deploy (push) Successful in 9s
Ajout des modules
2026-08-06 20:51:00 +02:00

9 lines
220 B
Plaintext

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