theprogrammablemind 8.5.0-beta.0 → 8.6.0-beta.0

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.
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
  }