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

getAltLen.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: eb68d1975093ba2535956cd4f5e9b047e8575df2 (plain)
1
2
3
export default function getAltLen(len) {
  return len === 'width' ? 'height' : 'width';
}