Sign in
chromium
/
devtools
/
devtools-frontend
/
40fcb9a9aae81ac1df2c19dee467ab3a4cf4088b
/
.
/
node_modules
/
es-abstract
/
helpers
/
getOwnPropertyDescriptor.js
blob: 71168e93ec16fc39a501976afe71c773c4b978b2 [
file
]
'use strict'
;
var
GetIntrinsic
=
require
(
'../GetIntrinsic'
);
var
$gOPD
=
GetIntrinsic
(
'%Object.getOwnPropertyDescriptor%'
);
if
(
$gOPD
)
{
try
{
$gOPD
([],
'length'
);
}
catch
(
e
)
{
// IE 8 has a broken gOPD
$gOPD
=
null
;
}
}
module
.
exports
=
$gOPD
;