github-pages-deploy-action/node_modules/core-js-pure/internals/object-keys.js
2020-03-06 22:45:40 -05:00

9 lines
303 B
JavaScript

var internalObjectKeys = require('../internals/object-keys-internal');
var enumBugKeys = require('../internals/enum-bug-keys');
// `Object.keys` method
// https://tc39.github.io/ecma262/#sec-object.keys
module.exports = Object.keys || function keys(O) {
return internalObjectKeys(O, enumBugKeys);
};