租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
290 B

6 months ago
  1. 'use strict';
  2. var GetIntrinsic = require('get-intrinsic');
  3. /** @type {import('.')} */
  4. var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
  5. if ($gOPD) {
  6. try {
  7. $gOPD([], 'length');
  8. } catch (e) {
  9. // IE 8 has a broken gOPD
  10. $gOPD = null;
  11. }
  12. }
  13. module.exports = $gOPD;