Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getMainAxisFromPlacement.js « utils « lib « package « popperjs - github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe186b31122c8433b9907810c13536eeb7ad79b7 (plain)
1
2
3
export default function getMainAxisFromPlacement(placement) {
  return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
}