PIbd-21_Danilov_V.V._Intern.../Lab3/node_modules/gopd/index.js
Владимир Данилов 83490711d5 отчет
2023-12-19 20:23:11 +04:00

17 lines
263 B
JavaScript

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