_descriptors.js 184 B

1234
  1. // Thank's IE8 for his funny defineProperty
  2. module.exports = !require('./_fails')(function () {
  3. return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
  4. });