Rename progetto + inizio a sistemare jenkinsfile

This commit is contained in:
Samuele E. Locatelli
2020-02-18 12:48:37 +01:00
parent 3888d37a14
commit 46223c679f
157 changed files with 0 additions and 34 deletions
@@ -0,0 +1,15 @@
/**
* Get the opposite placement variation of the given one
* @method
* @memberof Popper.Utils
* @argument {String} placement variation
* @returns {String} flipped placement variation
*/
export default function getOppositeVariation(variation) {
if (variation === 'end') {
return 'start';
} else if (variation === 'start') {
return 'end';
}
return variation;
}