theprogrammablemind 7.5.0-beta.40 → 7.5.0-beta.41

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 +1 -1
package/package.json CHANGED
@@ -61,6 +61,6 @@
61
61
  "json-stable-stringify": "^1.0.1",
62
62
  "node-fetch": "^2.6.1"
63
63
  },
64
- "version": "7.5.0-beta.40",
64
+ "version": "7.5.0-beta.41",
65
65
  "license": "ISC"
66
66
  }
package/src/helpers.js CHANGED
@@ -227,7 +227,7 @@ const validProps = (valids, object, type) => {
227
227
  }
228
228
  }
229
229
  if (!okay) {
230
- throw `Unknown property "${prop}" in the ${type}. Valid properties are ${valid}. The ${type} is ${JSON.stringify(object)}`
230
+ throw `Unknown property "${prop}" in the ${type}. Valid properties are ${valids}. The ${type} is ${JSON.stringify(object)}`
231
231
  }
232
232
  }
233
233
  }