mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-13 02:20:18 +00:00
16 lines
258 B
JavaScript
16 lines
258 B
JavaScript
'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;
|