sweetalert2 11.4.38 → 11.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,9 +100,3 @@ export const asPromise = (arg) => (hasToPromiseFn(arg) ? arg.toPromise() : Promi
100
100
  * @returns {boolean}
101
101
  */
102
102
  export const isPromise = (arg) => arg && Promise.resolve(arg) === arg
103
-
104
- /**
105
- * @param {Array} arr
106
- * @returns {any}
107
- */
108
- export const getRandomElement = (arr) => arr[Math.floor(Math.random() * arr.length)]