phecda-vue 1.2.6 → 1.2.7
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -347,7 +347,7 @@ function createFilter(initState = {}, option = {}) {
|
|
|
347
347
|
let store = {};
|
|
348
348
|
function traverse(obj, path) {
|
|
349
349
|
for (const i in obj) {
|
|
350
|
-
if (
|
|
350
|
+
if (resolveOption.exclude.includes(i))
|
|
351
351
|
continue;
|
|
352
352
|
const errorPath = path ? `${path}.${i}` : i;
|
|
353
353
|
if (typeof obj[i] === "object" && obj[i])
|
package/dist/index.mjs
CHANGED
|
@@ -288,7 +288,7 @@ function createFilter(initState = {}, option = {}) {
|
|
|
288
288
|
let store = {};
|
|
289
289
|
function traverse(obj, path) {
|
|
290
290
|
for (const i in obj) {
|
|
291
|
-
if (
|
|
291
|
+
if (resolveOption.exclude.includes(i))
|
|
292
292
|
continue;
|
|
293
293
|
const errorPath = path ? `${path}.${i}` : i;
|
|
294
294
|
if (typeof obj[i] === "object" && obj[i])
|