![JAR search and dependency download from the Maven repository](/logo.png)
package.lib.utils.getOppositeVariationPlacement.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Tooltip and Popover Positioning Engine
var hash = {
start: 'end',
end: 'start'
};
export default function getOppositeVariationPlacement(placement) {
return placement.replace(/start|end/g, function (matched) {
return hash[matched];
});
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy