MES手机端
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.
 
 
 
 

9 lines
323 B

  1. 'use strict';
  2. var fails = require('../internals/fails');
  3. // Detect IE8's incomplete defineProperty implementation
  4. module.exports = !fails(function () {
  5. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  6. return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
  7. });