aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/has-proto/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'backend/node_modules/has-proto/index.js')
-rw-r--r--backend/node_modules/has-proto/index.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/backend/node_modules/has-proto/index.js b/backend/node_modules/has-proto/index.js
deleted file mode 100644
index d3e4be4..0000000
--- a/backend/node_modules/has-proto/index.js
+++ /dev/null
@@ -1,11 +0,0 @@
-'use strict';
-
-var test = {
- foo: {}
-};
-
-var $Object = Object;
-
-module.exports = function hasProto() {
- return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);
-};