{"version":3,"sources":["webpack:///./node_modules/tiny-slider/src/helpers/events.js"],"names":["Events","topics","on","eventName","fn","this","push","off","i","length","splice","emit","data","type","forEach"],"mappings":"0FAAO,SAASA,IACd,MAAO,CACLC,OAAQ,GACRC,GAAI,SAAUC,EAAWC,GACvBC,KAAKJ,OAAOE,GAAaE,KAAKJ,OAAOE,IAAc,GACnDE,KAAKJ,OAAOE,GAAWG,KAAKF,IAE9BG,IAAK,SAASJ,EAAWC,GACvB,GAAIC,KAAKJ,OAAOE,GACd,IAAK,IAAIK,EAAI,EAAGA,EAAIH,KAAKJ,OAAOE,GAAWM,OAAQD,IACjD,GAAIH,KAAKJ,OAAOE,GAAWK,KAAOJ,EAAI,CACpCC,KAAKJ,OAAOE,GAAWO,OAAOF,EAAG,GACjC,QAKRG,KAAM,SAAUR,EAAWS,GACzBA,EAAKC,KAAOV,EACRE,KAAKJ,OAAOE,IACdE,KAAKJ,OAAOE,GAAWW,SAAQ,SAASV,GACtCA,EAAGQ,EAAMT,QArBnB","file":"events.cdb4db5d.js","sourcesContent":["export function Events() {\n return {\n topics: {},\n on: function (eventName, fn) {\n this.topics[eventName] = this.topics[eventName] || [];\n this.topics[eventName].push(fn);\n },\n off: function(eventName, fn) {\n if (this.topics[eventName]) {\n for (var i = 0; i < this.topics[eventName].length; i++) {\n if (this.topics[eventName][i] === fn) {\n this.topics[eventName].splice(i, 1);\n break;\n }\n }\n }\n },\n emit: function (eventName, data) {\n data.type = eventName;\n if (this.topics[eventName]) {\n this.topics[eventName].forEach(function(fn) {\n fn(data, eventName);\n });\n }\n }\n };\n};"],"sourceRoot":""}