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.
18 lines
875 B
18 lines
875 B
var $ = require('../internals/export'); |
|
var NATIVE_SYMBOL = require('../internals/native-symbol'); |
|
var fails = require('../internals/fails'); |
|
var getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols'); |
|
var toObject = require('../internals/to-object'); |
|
|
|
// V8 ~ Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives |
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3443 |
|
var FORCED = !NATIVE_SYMBOL || fails(function () { getOwnPropertySymbolsModule.f(1); }); |
|
|
|
// `Object.getOwnPropertySymbols` method |
|
// https://tc39.es/ecma262/#sec-object.getownpropertysymbols |
|
$({ target: 'Object', stat: true, forced: FORCED }, { |
|
getOwnPropertySymbols: function getOwnPropertySymbols(it) { |
|
var $getOwnPropertySymbols = getOwnPropertySymbolsModule.f; |
|
return $getOwnPropertySymbols ? $getOwnPropertySymbols(toObject(it)) : []; |
|
} |
|
});
|
|
|