UNPKG

490 BJavaScriptView Raw
1var $ = require('../internals/export');
2var fails = require('../internals/fails');
3var nativeGetOwnPropertyNames = require('../internals/object-get-own-property-names-external').f;
4
5var FAILS_ON_PRIMITIVES = fails(function () { return !Object.getOwnPropertyNames(1); });
6
7// `Object.getOwnPropertyNames` method
8// https://tc39.es/ecma262/#sec-object.getownpropertynames
9$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
10 getOwnPropertyNames: nativeGetOwnPropertyNames
11});