Nuget update vari (Bootstrap JQuery)

This commit is contained in:
Samuele Locatelli
2020-03-03 15:41:45 +01:00
parent 6529fbc6a2
commit f0d0cef894
299 changed files with 13123 additions and 3536 deletions
@@ -0,0 +1,11 @@
/**
* Helper used to know if the given modifier is enabled.
* @method
* @memberof Popper.Utils
* @returns {Boolean}
*/
export default function isModifierEnabled(modifiers, modifierName) {
return modifiers.some(
({ name, enabled }) => enabled && name === modifierName
);
}