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

getAltAxis.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: d834474b26695166ddccc1c389dfe83eb2349e99 (plain)
1
2
3
export default function getAltAxis(axis) {
  return axis === 'x' ? 'y' : 'x';
}