frontend/.pnpm-store/v3/files/b9/8a3f32a0f2197f27d2b3ef65f40e5cb1ed54e06f617c54419b4b49fca691daa844b29204928aa544d94f78a5c69cc90ed63a04ab4a10c4829dd7ac067cf1e7

17 lines
263 B
Plaintext

'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;