You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
418 B
11 lines
418 B
4 years ago
|
var internalObjectKeys = require('../internals/object-keys-internal');
|
||
|
var enumBugKeys = require('../internals/enum-bug-keys');
|
||
|
|
||
|
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
||
|
|
||
|
// `Object.getOwnPropertyNames` method
|
||
|
// https://tc39.github.io/ecma262/#sec-object.getownpropertynames
|
||
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
||
|
return internalObjectKeys(O, hiddenKeys);
|
||
|
};
|