{"version":3,"file":"js/npm.vue-cookie.fa7302ac.js","mappings":"+GAAA,WACIA,OAAOC,UAAYD,OAAOC,WAAa,SAAUC,GAC7C,MAAwB,kBAAVA,GACVC,SAASD,IACTE,KAAKC,MAAMH,KAAWA,CAC9B,EACA,IAAII,EAAS,EAAQ,KAEjBC,EAAY,CAEZC,QAAS,SAAUC,GACfA,EAAIC,UAAUC,QAAUC,KACxBH,EAAII,OAASD,IACjB,EACAE,IAAK,SAAUC,EAAMb,EAAOc,GACxB,IAAIC,EAAOD,EAIX,OAHGhB,OAAOC,UAAUe,KAChBC,EAAO,CAACC,QAASF,IAEdV,EAAOQ,IAAIC,EAAMb,EAAOe,EACnC,EAEAE,IAAK,SAAUJ,GACX,OAAOT,EAAOa,IAAIJ,EACtB,EAEAK,OAAQ,SAAUL,EAAMM,GACpB,IAAIJ,EAAO,CAACC,SAAU,QACPI,IAAZD,IACCJ,EAAOM,OAAOC,OAAOH,EAASJ,IAElCL,KAAKE,IAAIC,EAAM,GAAIE,EACvB,GAIAQ,EAAOC,QAAUnB,CAQxB,EA5CD,E","sources":["webpack://wsf-master-lrp/./node_modules/vue-cookie/src/vue-cookie.js"],"sourcesContent":["(function () {\n Number.isInteger = Number.isInteger || function (value) {\n return typeof value === 'number' &&\n isFinite(value) &&\n Math.floor(value) === value;\n };\n var Cookie = require('tiny-cookie');\n\n var VueCookie = {\n\n install: function (Vue) {\n Vue.prototype.$cookie = this;\n Vue.cookie = this;\n },\n set: function (name, value, daysOrOptions) {\n var opts = daysOrOptions;\n if(Number.isInteger(daysOrOptions)) {\n opts = {expires: daysOrOptions};\n }\n return Cookie.set(name, value, opts);\n },\n\n get: function (name) {\n return Cookie.get(name);\n },\n\n delete: function (name, options) {\n var opts = {expires: -1};\n if(options !== undefined) {\n opts = Object.assign(options, opts);\n }\n this.set(name, '', opts);\n }\n };\n\n if (typeof exports == \"object\") {\n module.exports = VueCookie;\n } else if (typeof define == \"function\" && define.amd) {\n define([], function(){ return VueCookie; })\n } else if (window.Vue) {\n window.VueCookie = VueCookie;\n Vue.use(VueCookie);\n }\n\n})();\n"],"names":["Number","isInteger","value","isFinite","Math","floor","Cookie","VueCookie","install","Vue","prototype","$cookie","this","cookie","set","name","daysOrOptions","opts","expires","get","delete","options","undefined","Object","assign","module","exports"],"sourceRoot":""}