@qvant/qui-max
Version:
A Vue 3 Design system for Web.
14 lines (13 loc) • 326 B
JavaScript
var hash = {
left: "right",
right: "left",
bottom: "top",
top: "bottom"
};
function getOppositePlacement(placement) {
return placement.replace(/left|right|bottom|top/g, function(matched) {
return hash[matched];
});
}
export { getOppositePlacement as default };
//# sourceMappingURL=getOppositePlacement.js.map