sprucehttp_sjs 1.0.7 → 1.0.8

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/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -221,7 +221,7 @@ console.log(sjs.body().toString("utf8"));
221
221
  ```
222
222
 
223
223
  ### ``bodyStream()``:
224
- Returns the request body as a buffer.
224
+ Returns the request body as a ReadStream.
225
225
 
226
226
  ```js
227
227
  console.log(sjs.bodyStream().read(13).toString("utf8"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprucehttp_sjs",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "A module for responding to requests within SpruceHTTP in an SJS file",
5
5
  "main": "index.js",
6
6
  "scripts": {