UNPKG

ngx-bootstrap

Version:
13 lines 316 B
/** * Get the opposite placement variation of the given one */ export function getOppositeVariation(variation) { if (variation === 'right') { return 'left'; } else if (variation === 'left') { return 'right'; } return variation; } //# sourceMappingURL=getOppositeVariation.js.map