@uniformdev/context 19.210.0 → 19.210.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/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
@@ -453,7 +453,7 @@ var quirkEvaluator = ({ update, criteria, signal, onLogMessage }) => {
|
|
453
453
|
const visitorValue = update.visitor.quirks[criteria.key];
|
454
454
|
const updateValue = (_a = update.state.quirks) == null ? void 0 : _a[criteria.key];
|
455
455
|
const value = updateValue != null ? updateValue : visitorValue;
|
456
|
-
const changed = Boolean(updateValue && visitorValue !== updateValue);
|
456
|
+
const changed = Boolean(updateValue !== void 0 && visitorValue !== updateValue);
|
457
457
|
const result = isStringMatch(value, criteria.match);
|
458
458
|
const finalResult = { result, changed };
|
459
459
|
onLogMessage == null ? void 0 : onLogMessage([
|
package/dist/index.js
CHANGED
@@ -541,7 +541,7 @@ var quirkEvaluator = ({ update, criteria, signal, onLogMessage }) => {
|
|
541
541
|
const visitorValue = update.visitor.quirks[criteria.key];
|
542
542
|
const updateValue = (_a = update.state.quirks) == null ? void 0 : _a[criteria.key];
|
543
543
|
const value = updateValue != null ? updateValue : visitorValue;
|
544
|
-
const changed = Boolean(updateValue && visitorValue !== updateValue);
|
544
|
+
const changed = Boolean(updateValue !== void 0 && visitorValue !== updateValue);
|
545
545
|
const result = isStringMatch(value, criteria.match);
|
546
546
|
const finalResult = { result, changed };
|
547
547
|
onLogMessage == null ? void 0 : onLogMessage([
|
package/dist/index.mjs
CHANGED
@@ -453,7 +453,7 @@ var quirkEvaluator = ({ update, criteria, signal, onLogMessage }) => {
|
|
453
453
|
const visitorValue = update.visitor.quirks[criteria.key];
|
454
454
|
const updateValue = (_a = update.state.quirks) == null ? void 0 : _a[criteria.key];
|
455
455
|
const value = updateValue != null ? updateValue : visitorValue;
|
456
|
-
const changed = Boolean(updateValue && visitorValue !== updateValue);
|
456
|
+
const changed = Boolean(updateValue !== void 0 && visitorValue !== updateValue);
|
457
457
|
const result = isStringMatch(value, criteria.match);
|
458
458
|
const finalResult = { result, changed };
|
459
459
|
onLogMessage == null ? void 0 : onLogMessage([
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/context",
|
3
|
-
"version": "19.210.
|
3
|
+
"version": "19.210.2",
|
4
4
|
"description": "Uniform Context core package",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -68,5 +68,5 @@
|
|
68
68
|
"publishConfig": {
|
69
69
|
"access": "public"
|
70
70
|
},
|
71
|
-
"gitHead": "
|
71
|
+
"gitHead": "be8f3f0b45faff78be6c5bbc4bd3311c1e9a7591"
|
72
72
|
}
|