aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_has.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/_has.js')
-rw-r--r--node_modules/core-js/modules/_has.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/node_modules/core-js/modules/_has.js b/node_modules/core-js/modules/_has.js
new file mode 100644
index 00000000..2a37d8b7
--- /dev/null
+++ b/node_modules/core-js/modules/_has.js
@@ -0,0 +1,4 @@
+var hasOwnProperty = {}.hasOwnProperty;
+module.exports = function (it, key) {
+ return hasOwnProperty.call(it, key);
+};