Files
Figma_1/mixitup-3.3.1/src/module-definitions.js
2025-09-16 01:40:08 +03:00

11 lines
369 B
JavaScript

/* global module, mixitup, define */
if (typeof exports === 'object' && typeof module === 'object') {
module.exports = mixitup;
} else if (typeof define === 'function' && define.amd) {
define(function() {
return mixitup;
});
} else if (typeof window.mixitup === 'undefined' || typeof window.mixitup !== 'function') {
window.mixitup = mixitup;
}