UNPKG

209 BJavaScriptView Raw
1var hash = {
2 start: 'end',
3 end: 'start'
4};
5export default function getOppositeVariationPlacement(placement) {
6 return placement.replace(/start|end/g, function (matched) {
7 return hash[matched];
8 });
9}
\No newline at end of file