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:
Diffstat (limited to 'testLib/constModule.js')
-rw-r--r--testLib/constModule.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/testLib/constModule.js b/testLib/constModule.js
index efff495..360a0f5 100644
--- a/testLib/constModule.js
+++ b/testLib/constModule.js
@@ -9,6 +9,7 @@ const
g = "g";
const/*wtf this is valid*/h = "h";
const /*and this is also*/i = "i";
+const{k} = {k: "k"};
exports.a = function () {
return a;
@@ -40,3 +41,6 @@ exports.i = function () {
exports.j = function () {
return j;
};
+exports.k = function () {
+ return k;
+};