You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 line
11 KiB
1 line
11 KiB
{"ast":null,"code":"/*! js-cookie v3.0.1 | MIT */\n/* eslint-disable no-var */\nfunction assign(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n for (var key in source) {\n target[key] = source[key];\n }\n }\n return target;\n}\n/* eslint-enable no-var */\n\n/* eslint-disable no-var */\nvar defaultConverter = {\n read: function (value) {\n if (value[0] === '\"') {\n value = value.slice(1, -1);\n }\n return value.replace(/(%[\\dA-F]{2})+/gi, decodeURIComponent);\n },\n write: function (value) {\n return encodeURIComponent(value).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g, decodeURIComponent);\n }\n};\n/* eslint-enable no-var */\n\n/* eslint-disable no-var */\n\nfunction init(converter, defaultAttributes) {\n function set(key, value, attributes) {\n if (typeof document === 'undefined') {\n return;\n }\n attributes = assign({}, defaultAttributes, attributes);\n if (typeof attributes.expires === 'number') {\n attributes.expires = new Date(Date.now() + attributes.expires * 864e5);\n }\n if (attributes.expires) {\n attributes.expires = attributes.expires.toUTCString();\n }\n key = encodeURIComponent(key).replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent).replace(/[()]/g, escape);\n var stringifiedAttributes = '';\n for (var attributeName in attributes) {\n if (!attributes[attributeName]) {\n continue;\n }\n stringifiedAttributes += '; ' + attributeName;\n if (attributes[attributeName] === true) {\n continue;\n }\n\n // Considers RFC 6265 section 5.2:\n // ...\n // 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n // character:\n // Consume the characters of the unparsed-attributes up to,\n // not including, the first %x3B (\";\") character.\n // ...\n stringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n }\n return document.cookie = key + '=' + converter.write(value, key) + stringifiedAttributes;\n }\n function get(key) {\n if (typeof document === 'undefined' || arguments.length && !key) {\n return;\n }\n\n // To prevent the for loop in the first place assign an empty array\n // in case there are no cookies at all.\n var cookies = document.cookie ? document.cookie.split('; ') : [];\n var jar = {};\n for (var i = 0; i < cookies.length; i++) {\n var parts = cookies[i].split('=');\n var value = parts.slice(1).join('=');\n try {\n var foundKey = decodeURIComponent(parts[0]);\n jar[foundKey] = converter.read(value, foundKey);\n if (key === foundKey) {\n break;\n }\n } catch (e) {}\n }\n return key ? jar[key] : jar;\n }\n return Object.create({\n set: set,\n get: get,\n remove: function (key, attributes) {\n set(key, '', assign({}, attributes, {\n expires: -1\n }));\n },\n withAttributes: function (attributes) {\n return init(this.converter, assign({}, this.attributes, attributes));\n },\n withConverter: function (converter) {\n return init(assign({}, this.converter, converter), this.attributes);\n }\n }, {\n attributes: {\n value: Object.freeze(defaultAttributes)\n },\n converter: {\n value: Object.freeze(converter)\n }\n });\n}\nvar api = init(defaultConverter, {\n path: '/'\n});\n/* eslint-enable no-var */\n\nexport default api;","map":{"version":3,"names":["assign","target","i","arguments","length","source","key","defaultConverter","read","value","slice","replace","decodeURIComponent","write","encodeURIComponent","init","converter","defaultAttributes","set","attributes","document","expires","Date","now","toUTCString","escape","stringifiedAttributes","attributeName","split","cookie","get","cookies","jar","parts","join","foundKey","e","Object","create","remove","withAttributes","withConverter","freeze","api","path"],"sources":["C:/Users/noanr/OneDrive/Documents/2eme anée/FavorSiteWebComplet/Favor/Site Web/client/node_modules/js-cookie/dist/js.cookie.mjs"],"sourcesContent":["/*! js-cookie v3.0.1 | MIT */\n/* eslint-disable no-var */\nfunction assign (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n for (var key in source) {\n target[key] = source[key];\n }\n }\n return target\n}\n/* eslint-enable no-var */\n\n/* eslint-disable no-var */\nvar defaultConverter = {\n read: function (value) {\n if (value[0] === '\"') {\n value = value.slice(1, -1);\n }\n return value.replace(/(%[\\dA-F]{2})+/gi, decodeURIComponent)\n },\n write: function (value) {\n return encodeURIComponent(value).replace(\n /%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,\n decodeURIComponent\n )\n }\n};\n/* eslint-enable no-var */\n\n/* eslint-disable no-var */\n\nfunction init (converter, defaultAttributes) {\n function set (key, value, attributes) {\n if (typeof document === 'undefined') {\n return\n }\n\n attributes = assign({}, defaultAttributes, attributes);\n\n if (typeof attributes.expires === 'number') {\n attributes.expires = new Date(Date.now() + attributes.expires * 864e5);\n }\n if (attributes.expires) {\n attributes.expires = attributes.expires.toUTCString();\n }\n\n key = encodeURIComponent(key)\n .replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent)\n .replace(/[()]/g, escape);\n\n var stringifiedAttributes = '';\n for (var attributeName in attributes) {\n if (!attributes[attributeName]) {\n continue\n }\n\n stringifiedAttributes += '; ' + attributeName;\n\n if (attributes[attributeName] === true) {\n continue\n }\n\n // Considers RFC 6265 section 5.2:\n // ...\n // 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n // character:\n // Consume the characters of the unparsed-attributes up to,\n // not including, the first %x3B (\";\") character.\n // ...\n stringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n }\n\n return (document.cookie =\n key + '=' + converter.write(value, key) + stringifiedAttributes)\n }\n\n function get (key) {\n if (typeof document === 'undefined' || (arguments.length && !key)) {\n return\n }\n\n // To prevent the for loop in the first place assign an empty array\n // in case there are no cookies at all.\n var cookies = document.cookie ? document.cookie.split('; ') : [];\n var jar = {};\n for (var i = 0; i < cookies.length; i++) {\n var parts = cookies[i].split('=');\n var value = parts.slice(1).join('=');\n\n try {\n var foundKey = decodeURIComponent(parts[0]);\n jar[foundKey] = converter.read(value, foundKey);\n\n if (key === foundKey) {\n break\n }\n } catch (e) {}\n }\n\n return key ? jar[key] : jar\n }\n\n return Object.create(\n {\n set: set,\n get: get,\n remove: function (key, attributes) {\n set(\n key,\n '',\n assign({}, attributes, {\n expires: -1\n })\n );\n },\n withAttributes: function (attributes) {\n return init(this.converter, assign({}, this.attributes, attributes))\n },\n withConverter: function (converter) {\n return init(assign({}, this.converter, converter), this.attributes)\n }\n },\n {\n attributes: { value: Object.freeze(defaultAttributes) },\n converter: { value: Object.freeze(converter) }\n }\n )\n}\n\nvar api = init(defaultConverter, { path: '/' });\n/* eslint-enable no-var */\n\nexport default api;\n"],"mappings":"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"},"metadata":{},"sourceType":"module"} |