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 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 (Array.isArray(obj[i]) || resolveOption.exclude.includes(i))
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 (Array.isArray(obj[i]) || resolveOption.exclude.includes(i))
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])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phecda-vue",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",