mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-25 19:34:45 +01:00
17 lines
263 B
JavaScript
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;
|