tinny-backend 1.0.4 → 1.0.5

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.
@@ -229,6 +229,7 @@ export default class Server {
229
229
  if (req.headers["content-type"] === "application/json") {
230
230
  Req.body = body ? JSON.parse(body) : null;
231
231
  }
232
+ Req.body = body;
232
233
  body = "";
233
234
  let handlersCount = 0;
234
235
  for (let i = 0; i < this.methodHandler.length; i++) {
@@ -1 +1 @@
1
- export declare const VERSION = "1.0.4";
1
+ export declare const VERSION = "1.0.5";
@@ -1 +1 @@
1
- export const VERSION = "1.0.4";
1
+ export const VERSION = "1.0.5";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinny-backend",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A lightweight and flexible backend framework built on Node.js.",
5
5
  "license": "MIT",
6
6
  "author": {