From dec9c7bda669d1da320a45ca9106f19c7f1ffb0e Mon Sep 17 00:00:00 2001 From: David Frank Date: Sat, 19 Mar 2016 15:46:23 +0800 Subject: [PATCH] no longer need to expose promise on reponse constructor now that body constructor exists --- lib/response.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/response.js b/lib/response.js index 04d4d7f..0586b19 100644 --- a/lib/response.js +++ b/lib/response.js @@ -33,6 +33,3 @@ function Response(body, opts) { } Response.prototype = Object.create(Body.prototype); - -// expose Promise -Response.Promise = global.Promise;