Comparing version 3.2.1 to 3.2.2
@@ -56,3 +56,3 @@ "use strict"; | ||
Res.prototype.bodyString = function () { | ||
return decodeURIComponent(this.body); | ||
return this.body; | ||
}; | ||
@@ -59,0 +59,0 @@ Res.clone = function (a) { |
@@ -62,3 +62,3 @@ import {HttpMessage, HeadersType} from "./HttpMessage"; | ||
bodyString(): string { | ||
return decodeURIComponent(this.body); | ||
return this.body; | ||
} | ||
@@ -65,0 +65,0 @@ |
@@ -14,1 +14,2 @@ export * from "./core/Routing"; | ||
export * from "./client/HttpClient"; | ||
export * from "./zipkin/Zipkin"; |
@@ -17,1 +17,2 @@ "use strict"; | ||
__export(require("./client/HttpClient")); | ||
__export(require("./zipkin/Zipkin")); |
@@ -16,1 +16,3 @@ export * from "./core/Routing"; | ||
export * from "./client/HttpClient"; | ||
export * from "./zipkin/Zipkin"; |
{ | ||
"name": "http4js", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "A lightweight HTTP toolkit", | ||
@@ -30,7 +30,7 @@ "main": "dist/index.js", | ||
"koa-bodyparser": "4.2.0", | ||
"mocha": "5.0.0", | ||
"mocha": "5.2.0", | ||
"ssl-root-cas": "1.2.5", | ||
"ts-node": "4.1.0", | ||
"ts-node": "7.0.1", | ||
"typescript": "3.0.1" | ||
} | ||
} |
125075
2880