ohctechv3/.svn/pristine/55/5592e1ecb644f9c2bbe2c51f5ebfa3d95b76beef.svn-base

17 lines
263 B
Plaintext
Raw Permalink Normal View History

2024-10-28 15:03:36 +05:30
'use strict';
var GetIntrinsic = require('get-intrinsic');
var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
if ($gOPD) {
try {
$gOPD([], 'length');
} catch (e) {
// IE 8 has a broken gOPD
$gOPD = null;
}
}
module.exports = $gOPD;