From 5b91bf58d4a09aada3ce298900176e2a32db2414 Mon Sep 17 00:00:00 2001 From: Aaron Scherer Date: Sun, 24 Mar 2019 16:55:12 -0700 Subject: [PATCH] Adding default export Makes it more friendly to the `import` syntax --- lib/rp.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rp.js b/lib/rp.js index 9630d01..06a9a02 100644 --- a/lib/rp.js +++ b/lib/rp.js @@ -50,3 +50,4 @@ request.bindCLS = function RP$bindCLS() { module.exports = request; +module.exports.default = request;