debian-mirror-gitlab/core-js/internals/descriptors.js

7 lines
213 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
var fails = require('../internals/fails');
// Thank's IE8 for his funny defineProperty
module.exports = !fails(function () {
2020-01-12 00:16:45 +05:30
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
2019-09-25 13:30:05 +05:30
});