slower 2.1.0 → 2.1.1

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/slower.js +0 -1
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "path-to-regexp": "^6.2.2"
4
4
  },
5
5
  "name": "slower",
6
- "version": "2.1.0",
6
+ "version": "2.1.1",
7
7
  "main": "index.js",
8
8
  "devDependencies": {},
9
9
  "scripts": {
package/src/slower.js CHANGED
@@ -179,7 +179,6 @@ class SlowerRouter {
179
179
  this.static(layer.directoryPath, mount(layer.mountPath));
180
180
  continue;
181
181
  }
182
- console.log(layer)
183
182
  this.#setRoute(layer.method, mount(layer.path), layer.handler);
184
183
  }
185
184
  return this;