theprogrammablemind_4wp 9.3.0-beta.45 → 9.3.0-beta.46

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/client.js CHANGED
@@ -1937,7 +1937,6 @@ const knowledgeModuleImpl = async ({
1937
1937
  })
1938
1938
  */
1939
1939
  }
1940
-
1941
1940
  }
1942
1941
 
1943
1942
  // no cache 21 minutes + rebuild fails "node tester_rebuild -m colors"
package/package.json CHANGED
@@ -69,6 +69,6 @@
69
69
  "sort-json": "^2.0.0",
70
70
  "uuid": "^8.3.2"
71
71
  },
72
- "version": "9.3.0-beta.45",
72
+ "version": "9.3.0-beta.46",
73
73
  "license": "UNLICENSED"
74
74
  }
package/src/config.js CHANGED
@@ -1291,7 +1291,7 @@ class Config {
1291
1291
  }
1292
1292
  }
1293
1293
 
1294
- addEnable(key) {
1294
+ addEnable (key) {
1295
1295
  this._enable.push(key)
1296
1296
  }
1297
1297
 
@@ -3189,10 +3189,10 @@ class Config {
3189
3189
  }
3190
3190
  if (km) {
3191
3191
  if (more.semantics) {
3192
- more.semantics.map( (s) => s.km = km )
3192
+ more.semantics.map((s) => s.km = km)
3193
3193
  }
3194
3194
  if (more.generators) {
3195
- more.generators.map( (g) => g.km = km )
3195
+ more.generators.map((g) => g.km = km)
3196
3196
  }
3197
3197
  }
3198
3198
  const normalizeIsA = (edge) => {
package/src/debug.js CHANGED
@@ -31,7 +31,7 @@ const wasHit = (name) => {
31
31
  return hits[name]
32
32
  }
33
33
 
34
- const counter = (name, { breakAt=[], debugBreak=true, tag='' } = {}) => {
34
+ const counter = (name, { breakAt = [], debugBreak = true, tag = '' } = {}) => {
35
35
  if (!counters[name]) {
36
36
  counters[name] = 0
37
37
  }
package/src/project.js CHANGED
@@ -3,7 +3,7 @@ const project = (object, filter) => {
3
3
  if (!object) {
4
4
  return
5
5
  }
6
- if (typeof object == 'string' || typeof object == 'number') {
6
+ if (typeof object === 'string' || typeof object === 'number') {
7
7
  return object
8
8
  }
9
9