You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
248 B

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