theprogrammablemind_4wp 8.5.0-beta.0 → 8.6.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/helpers.js +2 -1
package/package.json CHANGED
@@ -65,6 +65,6 @@
65
65
  "sort-json": "^2.0.0",
66
66
  "uuid": "^8.3.2"
67
67
  },
68
- "version": "8.5.0-beta.0",
68
+ "version": "8.6.0-beta.0",
69
69
  "license": "UNLICENSED"
70
70
  }
package/src/helpers.js CHANGED
@@ -314,7 +314,8 @@ const functionsToStrings = (config) => {
314
314
  config = { ...config }
315
315
  defToStrings = (def) => {
316
316
  if (def.apply) {
317
- return { ...def, match: def.match.toString(), apply: def.apply.toString() }
317
+ // return { ...def, match: def.match.toString(), apply: def.apply.toString() }
318
+ return { match: def.match.toString(), apply: def.apply.toString() }
318
319
  } else {
319
320
  return [def[0].toString(), def[1].toString()]
320
321
  }