Refresh primi NuGet packages (jquery, bootstrap)

This commit is contained in:
Samuele E. Locatelli
2020-01-28 10:17:12 +01:00
parent 47a7ae4dd6
commit c0489f9d0d
289 changed files with 17111 additions and 15805 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;
}