v1.0 with SW PWA enabled
This commit is contained in:
39
frontend/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js
generated
vendored
Normal file
39
frontend/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
function isObject(subject) {
|
||||
return Object.prototype.toString.call(subject) === '[object Object]';
|
||||
}
|
||||
function isRecord(subject) {
|
||||
return isObject(subject) || Array.isArray(subject);
|
||||
}
|
||||
function canUseDOM() {
|
||||
return !!(typeof window !== 'undefined' && window.document && window.document.createElement);
|
||||
}
|
||||
function areOptionsEqual(optionsA, optionsB) {
|
||||
const optionsAKeys = Object.keys(optionsA);
|
||||
const optionsBKeys = Object.keys(optionsB);
|
||||
if (optionsAKeys.length !== optionsBKeys.length) return false;
|
||||
const breakpointsA = JSON.stringify(Object.keys(optionsA.breakpoints || {}));
|
||||
const breakpointsB = JSON.stringify(Object.keys(optionsB.breakpoints || {}));
|
||||
if (breakpointsA !== breakpointsB) return false;
|
||||
return optionsAKeys.every(key => {
|
||||
const valueA = optionsA[key];
|
||||
const valueB = optionsB[key];
|
||||
if (typeof valueA === 'function') return `${valueA}` === `${valueB}`;
|
||||
if (!isRecord(valueA) || !isRecord(valueB)) return valueA === valueB;
|
||||
return areOptionsEqual(valueA, valueB);
|
||||
});
|
||||
}
|
||||
function sortAndMapPluginToOptions(plugins) {
|
||||
return plugins.concat().sort((a, b) => a.name > b.name ? 1 : -1).map(plugin => plugin.options);
|
||||
}
|
||||
function arePluginsEqual(pluginsA, pluginsB) {
|
||||
if (pluginsA.length !== pluginsB.length) return false;
|
||||
const optionsA = sortAndMapPluginToOptions(pluginsA);
|
||||
const optionsB = sortAndMapPluginToOptions(pluginsB);
|
||||
return optionsA.every((optionA, index) => {
|
||||
const optionB = optionsB[index];
|
||||
return areOptionsEqual(optionA, optionB);
|
||||
});
|
||||
}
|
||||
|
||||
export { areOptionsEqual, arePluginsEqual, canUseDOM, sortAndMapPluginToOptions };
|
||||
//# sourceMappingURL=embla-carousel-reactive-utils.esm.js.map
|
||||
Reference in New Issue
Block a user