godprotocol 2.3.41 → 2.3.43

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/README.md CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "godprotocol",
3
- "version": "2.3.41",
3
+ "version": "2.3.43",
4
4
  "description": "A distributed computing environment for Web 4.0 — integrating AI, decentralisation, and virtual computation.",
5
5
  "main": "Index.js",
6
6
  "type": "module",
@@ -122,7 +122,6 @@ class Route_table extends Headers {
122
122
  };
123
123
 
124
124
  get_route = async (name) => {
125
- console.log(name, "helo");
126
125
  const version = this.versions[this.active_version];
127
126
 
128
127
  if (version.routes[name]) {
@@ -130,7 +129,6 @@ class Route_table extends Headers {
130
129
  }
131
130
 
132
131
  for (const [pattern, route] of Object.entries(version.routes)) {
133
- console.log(pattern);
134
132
  if (pattern.startsWith("^")) {
135
133
  if (new RegExp(pattern).test(name)) {
136
134
  return route;