summaryrefslogtreecommitdiff
path: root/src/node_modules/es-abstract/helpers/OwnPropertyKeys.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_modules/es-abstract/helpers/OwnPropertyKeys.js')
-rw-r--r--src/node_modules/es-abstract/helpers/OwnPropertyKeys.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/node_modules/es-abstract/helpers/OwnPropertyKeys.js b/src/node_modules/es-abstract/helpers/OwnPropertyKeys.js
new file mode 100644
index 0000000..4a06ce3
--- /dev/null
+++ b/src/node_modules/es-abstract/helpers/OwnPropertyKeys.js
@@ -0,0 +1,22 @@
+'use strict';
+
+var GetIntrinsic = require('../GetIntrinsic');
+
+var callBind = require('./callBind');
+var callBound = require('./callBound');
+
+var $ownKeys = GetIntrinsic('%Reflect.ownKeys%', true);
+var $pushApply = callBind.apply(GetIntrinsic('%Array.prototype.push%'));
+var $SymbolValueOf = callBound('Symbol.prototype.valueOf', true);
+var $gOPN = GetIntrinsic('%Object.getOwnPropertyNames%', true);
+var $gOPS = $SymbolValueOf ? GetIntrinsic('%Object.getOwnPropertySymbols%') : null;
+
+var keys = require('object-keys');
+
+module.exports = $ownKeys || function OwnPropertyKeys(source) {
+ var ownKeys = ($gOPN || keys)(source);
+ if ($gOPS) {
+ $pushApply(ownKeys, $gOPS(source));
+ }
+ return ownKeys;
+};