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.
12 lines
581 B
12 lines
581 B
var $ = require('../internals/export'); |
|
var DESCRIPTORS = require('../internals/descriptors'); |
|
var anObject = require('../internals/an-object'); |
|
var getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor'); |
|
|
|
// `Reflect.getOwnPropertyDescriptor` method |
|
// https://tc39.es/ecma262/#sec-reflect.getownpropertydescriptor |
|
$({ target: 'Reflect', stat: true, sham: !DESCRIPTORS }, { |
|
getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey) { |
|
return getOwnPropertyDescriptorModule.f(anObject(target), propertyKey); |
|
} |
|
});
|
|
|