chefcookie 2.8.1 → 2.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/_build/script.js +1 -1
- package/chefcookie.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
-
#### [2.8.
|
|
7
|
+
#### [2.8.1](https://github.com/vielhuber/chefcookie/compare/2.8.1...2.8.1)
|
|
8
|
+
|
|
9
|
+
#### [2.8.1](https://github.com/vielhuber/chefcookie/compare/2.8.0...2.8.1)
|
|
10
|
+
|
|
11
|
+
> 28 June 2023
|
|
12
|
+
|
|
13
|
+
- Add microsoft ads. [`83e530b`](https://github.com/vielhuber/chefcookie/commit/83e530b8d1f546c822c3e9c4cb3ed84675d0758f)
|
|
14
|
+
- Update changelog. [`efa3e8b`](https://github.com/vielhuber/chefcookie/commit/efa3e8bb85854c50cbf076dd8e122da87c9f0531)
|
|
8
15
|
|
|
9
16
|
#### [2.8.0](https://github.com/vielhuber/chefcookie/compare/2.7.9...2.8.0)
|
|
10
17
|
|
package/_build/script.js
CHANGED
|
@@ -323,7 +323,7 @@ var chefcookie = /*#__PURE__*/function () {
|
|
|
323
323
|
if (typeof exclude__value === 'function' && exclude__value() === true) {
|
|
324
324
|
excluded = true;
|
|
325
325
|
}
|
|
326
|
-
if (typeof exclude__value === 'string' && (exclude__value.indexOf('http') === 0 && exclude__value === window.location.protocol + '//' + window.location.host + window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === decodeURI(window.location.pathname) || exclude__value.indexOf('http') !== 0 && exclude__value + '/' === window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value + '/' === decodeURI(window.location.pathname))) {
|
|
326
|
+
if (typeof exclude__value === 'string' && (exclude__value.indexOf('http') === 0 && exclude__value === window.location.protocol + '//' + window.location.host + window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === decodeURI(window.location.pathname) || exclude__value.indexOf('http') !== 0 && '/' + exclude__value.replace(/^\/+|\/+$/g, '') + '/' === '/' + window.location.pathname.replace(/^\/+|\/+$/g, '') + '/' || exclude__value.indexOf('http') !== 0 && '/' + exclude__value.replace(/^\/+|\/+$/g, '') + '/' === '/' + decodeURI(window.location.pathname).replace(/^\/+|\/+$/g, '') + '/')) {
|
|
327
327
|
excluded = true;
|
|
328
328
|
}
|
|
329
329
|
});
|