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/sealedObject.js')
-rw-r--r--testLib/sealedObject.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/testLib/sealedObject.js b/testLib/sealedObject.js
new file mode 100644
index 0000000..72881a8
--- /dev/null
+++ b/testLib/sealedObject.js
@@ -0,0 +1,4 @@
+var obj = {};
+Object.seal(obj);
+
+module.exports = obj;