Update JS Cookie library to v3.0.5. (#43686)

This commit is contained in:
Barry Hughes 2024-02-01 11:36:12 -08:00 committed by GitHub
parent 1bd5ab738a
commit ded33b7049
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 123 additions and 137 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: update
Updates the bundled JS Cookie library to v3.0.5.

View File

@ -1,165 +1,147 @@
/*! /*! js-cookie v3.0.5 | MIT */
* JavaScript Cookie v2.1.4 ;
* https://github.com/js-cookie/js-cookie (function (global, factory) {
* typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack typeof define === 'function' && define.amd ? define(factory) :
* Released under the MIT license (global = typeof globalThis !== 'undefined' ? globalThis : global || self, (function () {
*/ var current = global.Cookies;
;(function (factory) { var exports = global.Cookies = factory();
var registeredInModuleLoader = false; exports.noConflict = function () { global.Cookies = current; return exports; };
if (typeof define === 'function' && define.amd) { })());
define(factory); })(this, (function () { 'use strict';
registeredInModuleLoader = true;
/* eslint-disable no-var */
function assign (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
target[key] = source[key];
} }
if (typeof exports === 'object') {
module.exports = factory();
registeredInModuleLoader = true;
} }
if (!registeredInModuleLoader) { return target
var OldCookies = window.Cookies; }
var api = window.Cookies = factory(); /* eslint-enable no-var */
api.noConflict = function () {
window.Cookies = OldCookies; /* eslint-disable no-var */
return api; var defaultConverter = {
read: function (value) {
if (value[0] === '"') {
value = value.slice(1, -1);
}
return value.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent)
},
write: function (value) {
return encodeURIComponent(value).replace(
/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,
decodeURIComponent
)
}
}; };
} /* eslint-enable no-var */
}(function () {
function extend () {
var i = 0;
var result = {};
for (; i < arguments.length; i++) {
var attributes = arguments[ i ];
for (var key in attributes) {
result[key] = attributes[key];
}
}
return result;
}
function init (converter) { /* eslint-disable no-var */
function api (key, value, attributes) {
var result; function init (converter, defaultAttributes) {
function set (name, value, attributes) {
if (typeof document === 'undefined') { if (typeof document === 'undefined') {
return; return
} }
// Write attributes = assign({}, defaultAttributes, attributes);
if (arguments.length > 1) {
attributes = extend({
path: '/'
}, api.defaults, attributes);
if (typeof attributes.expires === 'number') { if (typeof attributes.expires === 'number') {
var expires = new Date(); attributes.expires = new Date(Date.now() + attributes.expires * 864e5);
expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5); }
attributes.expires = expires; if (attributes.expires) {
attributes.expires = attributes.expires.toUTCString();
} }
// We're using "expires" because "max-age" is not supported by IE name = encodeURIComponent(name)
attributes.expires = attributes.expires ? attributes.expires.toUTCString() : ''; .replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent)
.replace(/[()]/g, escape);
try {
result = JSON.stringify(value);
if (/^[\{\[]/.test(result)) {
value = result;
}
} catch (e) {}
if (!converter.write) {
value = encodeURIComponent(String(value))
.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
} else {
value = converter.write(value, key);
}
key = encodeURIComponent(String(key));
key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
key = key.replace(/[\(\)]/g, escape);
var stringifiedAttributes = ''; var stringifiedAttributes = '';
for (var attributeName in attributes) { for (var attributeName in attributes) {
if (!attributes[attributeName]) { if (!attributes[attributeName]) {
continue; continue
} }
stringifiedAttributes += '; ' + attributeName; stringifiedAttributes += '; ' + attributeName;
if (attributes[attributeName] === true) { if (attributes[attributeName] === true) {
continue; continue
}
stringifiedAttributes += '=' + attributes[attributeName];
}
return (document.cookie = key + '=' + value + stringifiedAttributes);
} }
// Read // Considers RFC 6265 section 5.2:
// ...
// 3. If the remaining unparsed-attributes contains a %x3B (";")
// character:
// Consume the characters of the unparsed-attributes up to,
// not including, the first %x3B (";") character.
// ...
stringifiedAttributes += '=' + attributes[attributeName].split(';')[0];
}
if (!key) { return (document.cookie =
result = {}; name + '=' + converter.write(value, name) + stringifiedAttributes)
}
function get (name) {
if (typeof document === 'undefined' || (arguments.length && !name)) {
return
} }
// To prevent the for loop in the first place assign an empty array // To prevent the for loop in the first place assign an empty array
// in case there are no cookies at all. Also prevents odd result when // in case there are no cookies at all.
// calling "get()"
var cookies = document.cookie ? document.cookie.split('; ') : []; var cookies = document.cookie ? document.cookie.split('; ') : [];
var rdecode = /(%[0-9A-Z]{2})+/g; var jar = {};
var i = 0; for (var i = 0; i < cookies.length; i++) {
for (; i < cookies.length; i++) {
var parts = cookies[i].split('='); var parts = cookies[i].split('=');
var cookie = parts.slice(1).join('='); var value = parts.slice(1).join('=');
if (cookie.charAt(0) === '"') {
cookie = cookie.slice(1, -1);
}
try { try {
var name = parts[0].replace(rdecode, decodeURIComponent); var found = decodeURIComponent(parts[0]);
cookie = converter.read ? jar[found] = converter.read(value, found);
converter.read(cookie, name) : converter(cookie, name) ||
cookie.replace(rdecode, decodeURIComponent);
if (this.json) { if (name === found) {
try { break
cookie = JSON.parse(cookie);
} catch (e) {}
}
if (key === name) {
result = cookie;
break;
}
if (!key) {
result[name] = cookie;
} }
} catch (e) {} } catch (e) {}
} }
return result; return name ? jar[name] : jar
} }
api.set = api; return Object.create(
api.get = function (key) { {
return api.call(api, key); set,
}; get,
api.getJSON = function () { remove: function (name, attributes) {
return api.apply({ set(
json: true name,
}, [].slice.call(arguments)); '',
}; assign({}, attributes, {
api.defaults = {};
api.remove = function (key, attributes) {
api(key, '', extend(attributes, {
expires: -1 expires: -1
})); })
}; );
},
withAttributes: function (attributes) {
return init(this.converter, assign({}, this.attributes, attributes))
},
withConverter: function (converter) {
return init(assign({}, this.converter, converter), this.attributes)
}
},
{
attributes: { value: Object.freeze(defaultAttributes) },
converter: { value: Object.freeze(converter) }
}
)
}
api.withConverter = init; var api = init(defaultConverter, { path: '/' });
/* eslint-enable no-var */
return api; return api;
}
return init(function () {});
})); }));