UNPKG

303 BJavaScriptView Raw
1var internalObjectKeys = require('../internals/object-keys-internal');
2var enumBugKeys = require('../internals/enum-bug-keys');
3
4// `Object.keys` method
5// https://tc39.github.io/ecma262/#sec-object.keys
6module.exports = Object.keys || function keys(O) {
7 return internalObjectKeys(O, enumBugKeys);
8};