aboutsummaryrefslogtreecommitdiff
path: root/node_modules/node-fetch/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/node-fetch/index.js')
-rw-r--r--node_modules/node-fetch/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/node-fetch/index.js b/node_modules/node-fetch/index.js
index df89c80c7..8f6730d30 100644
--- a/node_modules/node-fetch/index.js
+++ b/node_modules/node-fetch/index.js
@@ -241,7 +241,7 @@ function Fetch(url, opts) {
req.end();
} else if (options.body instanceof Buffer) {
req.write(options.body);
- req.end()
+ req.end();
} else if (typeof options.body === 'object' && options.body.pipe) {
options.body.pipe(req);
} else if (typeof options.body === 'object') {