UNPKG

248 BJavaScriptView Raw
1var hash = {
2 left: 'right',
3 right: 'left',
4 bottom: 'top',
5 top: 'bottom'
6};
7export default function getOppositePlacement(placement) {
8 return placement.replace(/left|right|bottom|top/g, function (matched) {
9 return hash[matched];
10 });
11}
\No newline at end of file