aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babel-runtime/node_modules/core-js/library/modules/_descriptors.js
blob: 046974066d33a11e4c0a4d1d13dcdd9bd0dcf532 (plain)
1
2
3
4
// Thank's IE8 for his funny defineProperty
module.exports = !require('./_fails')(function () {
  return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
});