Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ewald <mail@johannesewald.de>2017-11-11 05:14:58 +0300
committerGitHub <noreply@github.com>2017-11-11 05:14:58 +0300
commit457955afab6e3f9baf649b6d9275d08f27b671ac (patch)
tree9b06934df193875f41dfc9400a352acd3183eb2a /testLib/someOtherModule.js
parentfff5037950f78b4164c299560f761bd5e3dc9e06 (diff)
parentec2175b17bd1f2ecdb479c66fab8a01666d6da3a (diff)
Merge pull request #118 from jhnns/pr/origin/117
Enable const support
Diffstat (limited to 'testLib/someOtherModule.js')
-rw-r--r--testLib/someOtherModule.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/testLib/someOtherModule.js b/testLib/someOtherModule.js
index da38f4c..fe6bbd7 100644
--- a/testLib/someOtherModule.js
+++ b/testLib/someOtherModule.js
@@ -3,4 +3,5 @@
__filename = "/test/testModules/someOtherModule.js";
exports.fs = {};
-exports.filename = __filename; \ No newline at end of file
+exports.filename = __filename;
+exports.name = "somOtherModule";